/* Modal Overlay */
#confirmOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

/* Modal Box */
#confirmBox {
    background: #fff;
    border-radius: 24px;
    padding: 25px 50px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.25s ease;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    z-index: 999999;
}

/* Modal Message */
#confirmMessage {
    font-size: 16px;
    color: #26005E;
    margin-bottom: 20px;
}


p.aviso-aprovacao {
    margin: 11px 0;
    font-size: 12px;
    color: #8c76b8;
}

/* Modal Buttons Container */
.modal-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Confirm Yes Button */
#confirmYes {
    cursor: pointer;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 15px;
    transition: background 0.2s ease;
    font-weight: 600;
    background: #620BDC;
    color: #fff;
    margin-right: 8px;
}

/* Confirm No Button */
#confirmNo {
    cursor: pointer;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 15px;
    transition: background 0.2s ease;
    font-weight: 600;
    background: #F1EDF5;
    color: #F2295B;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Button Hover States */
#confirmYes:hover {
    background: #F2295B !important;
}
#confirmNo:hover {
    background: #ddd !important;
}
