/* ============================================
   DELETE ACCOUNT MODAL STYLES
   ============================================ */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    padding: 0;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 24px;
    border-bottom: 1px solid #ddd;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-body {
    padding: 24px;
    color: #333;
}

.modal-body p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    font-size: 14px;
}

.warning-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    color: #856404;
    font-weight: 500;
}

.account-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 13px;
}

.info-label {
    font-weight: 600;
    color: #555;
}

.info-value {
    color: #dc3545;
    word-break: break-all;
}

.modal-footer {
    padding: 20px 24px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.modal-footer button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-cancel {
    background-color: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.btn-delete {
    background-color: #dc3545;
    color: white;
}

.btn-delete:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.confirmation-text {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8d7da;
    border-radius: 6px;
    color: #721c24;
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================
   LOGOUT MODAL STYLES
   ============================================ */

.logout-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    justify-content: center;
    align-items: center;
}

.logout-modal-overlay.show {
    display: flex;
}

.logout-modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    padding: 0;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

.logout-modal-header {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #333;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.logout-modal-header h2 {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logout-modal-body {
    padding: 20px;
    color: #333;
}

.logout-modal-body p {
    margin: 0 0 10px 0;
    line-height: 1.5;
    font-size: 14px;
}

.logout-modal-footer {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.logout-modal-footer button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-logout-cancel {
    background-color: #6c757d;
    color: white;
}

.btn-logout-cancel:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.btn-logout-confirm {
    background-color: #ffc107;
    color: #333;
}

.btn-logout-confirm:hover {
    background-color: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}
