﻿/* Fullscreen Modal for Bootstrap 3 with unique class */
.custom-fullscreen-modal {
    padding: 0 !important;
}

    .custom-fullscreen-modal .modal-dialog {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .custom-fullscreen-modal .modal-content {
        height: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }

    .custom-fullscreen-modal .modal-body {
        overflow-y: auto;
    }


    .custom-fullscreen-modal .modal-header {
        padding: 16px 24px;
        border-bottom: 1px solid #dee2e6;
        background-color: #f8f9fa;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .custom-fullscreen-modal .modal-title {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: #343a40;
    }

    .custom-fullscreen-modal .close {
        font-size: 32px; /* Lebih besar dari default (24px) */
        font-weight: 300; /* Lebih tebal */
        color: #000;
        opacity: 0.75;
        text-shadow: none;
        outline: none;
        border: none;
        background: transparent;
        line-height: 1;
        padding: 0;
        margin: 0;
        cursor: pointer;
    }

        .custom-fullscreen-modal .close:hover {
            opacity: 1;
            color: #dc3545; /* Merah saat hover (opsional, bisa diubah) */
        }

    .custom-fullscreen-modal .modal-footer {
        padding: 16px 24px;
        border-top: 1px solid #dee2e6;
        background-color: #f8f9fa;
        display: flex;
        justify-content: flex-end;
    }

