.modal-popup {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding-top: 0;
}
.modal-content >h2 {
    font-size: 16px;
    color: black;
}

/* Buttons */
.modal-buttons {
    margin-top: 15px;
}
.modal-buttons button {
    margin: 5px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.yes-btn { 
    background-color: #3b82f6; 
    color: white; 
    width: 60px;
}
.no-btn { 
    background-color: rgba(63, 134, 246, 0.20);
    color: #3b82f6;
    width: 60px; 
}

/* Checkbox */
.modal-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.modal-checkbox input {
    margin-right: 10px;
    background-color: white;
    border: 1px solid gray;
}

.modal-checkbox >label{
    font-size: 15px;
    font-weight: normal;
    color: gray;
    margin:0;
    margin-top: 3px;
}