/* Logout Confirmation Popup Styles */
.logout-confirmation-popup {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.logout-confirmation-title {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.logout-confirm-btn {
    /*background-color: #dc3545 !important;*/
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logout-confirm-btn:hover {
    transform: translateY(-1px);
}

.logout-cancel-btn {
    background-color: #6c757d !important;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logout-cancel-btn:hover {
    background-color: #5a6268 !important;
    transform: translateY(-1px);
}

/* Highlight logout link */
.js-logout-confirmation {
    font-weight: 500;
}

.js-logout-confirmation:hover {
    color: #c82333 !important;
}
.swal2-cancel.logout-cancel-btn.swal2-styled {
    color: white !important;
}