/* =======================
Modal Overlay
========================== */
.modal-overlay-view {
    display: none;    
    position: absolute;

    left: 0px;    
    width: 100%;
    max-height:100%;  
    z-index: 1002;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;    
}

/* =======================
Modal Content
========================== */
.modal-content-view {
    margin-top: 130x;
    padding:10px;
    background-color: #fff;
    width: 90%;  
    max-height:60%;  
    margin-left:0;
    border-radius: 6px;
    
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 70px;
    width: 32px;
    height: 32px;
    background-color: #ebe5e5; /* Biru */
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%; /* Membuat lingkaran */
    text-align: center;
    line-height: 32px; /* Vertikal tengah */
    cursor: pointer;
    border: none;
    /* box-shadow: 2px 2px 12px 2px rgb(255, 255, 0); */ /* Warna kuning solid */

    transition: background-color 0.3s ease;
    
}

.close-btn:hover {
    background-color: #0056b3; /* Biru lebih gelap saat hover */
    color:white;
}

.modal-content-view .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 12px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.modal-content-view .close-btn:hover {
    color: #d32222;
    top:10px;
}

@keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
