.btn-open-popup2 {
    justify-content: center;
    justify-items: center;
    justify-self: center;
    left:0;
    right:0;
    position: fixed;
    padding: 12px 24px;
    font-size: 18px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-direction: column;
    gap: 12px;
}

.btn-open-popup2:hover {
background-color: #990e17;
}

.overlay-container2 {
    display: none;
    position: fixed;
    left: 0;
    right:0;
    top:0;
    bottom:0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    justify-self: center;
    align-self: center; 
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    flex-direction: column;
    gap: 12px;
    z-index:777;
}

.popup-box2 {
overflow-y: scroll;
position: fixed;
width: 360px;
max-height: 680px;
background: #ffffffd9;
padding: 3px;
border-radius: 12px;
box-shadow: -4px 4px 6px rgba(0, 0, 0, 0.4);
text-align: center;
opacity: 0;
transform: scale(0.8);
animation: fadeInUp 0.5s ease-out forwards;
border: solid 2px #0000004f;
}

.form-container2 {
display: flex;
flex-direction: column;
}

.btn-close-popup2 {
padding: 12px 24px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-close-popup2 {
    margin-top: 12px;
    background-color: #000;
    color: #fff;
}

.btn-close-popup2:hover {
background-color: #990e17;
}

/* Keyframes for fadeInUp animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for popup */
.overlay-container2.show {
display: flex;
opacity: 1;
}


/* Alert - Status Kehadiran - Start */
.alert-info {
color: #0c5460;
background-color: #d1ecf1;
border-color: #bee5eb
}
/* Alert - Status Kehadiran - End */


/* Border / Frame List Ucapan - Start */
.border-list-ucapan {
border: solid 2px #bcb3b9;
border-radius: 8px;
padding: 5px;
margin: 10px;
box-shadow: -2px 2px 4px rgb(0 0 0 / 18%);

background: #fff;
max-width: 100%;
word-wrap: anywhere;
object-fit: contain;
background-image: url('../gmb/bg-rounded.png');
}
/* Border / Frame List Ucapan - End */