/* Account Status Alert Styles */
.account-status-alert {
    background: #fffbf0;
    border: 1px solid #ffe69c;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(93, 173, 226, 0.1);
    padding: 12px 16px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.account-status-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5dade2 0%, #3498db 50%, #5dade2 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.alert-icon {
    width: 40px;
    height: 40px;
    background: rgba(93, 173, 226, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #856404;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.alert-icon i {
    font-size: 20px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.alert-content {
    color: #856404;
}

.alert-title {
    font-size: 18px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-title::before {
    content: '⚠️';
    font-size: 20px;
}

.alert-message {
    font-size: 14px;
    line-height: 1.4;
    color: #856404;
    margin: 0;
}

.alert-actions {
    flex-shrink: 0;
}

.alert-actions .btn {
    background: linear-gradient(135deg, #5dade2 0%, #3498db 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(93, 173, 226, 0.25);
    font-size: 14px;
}

.alert-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 173, 226, 0.4);
    background: linear-gradient(135deg, #e0a800 0%, #e67e00 100%);
}

.alert-actions .btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .account-status-alert {
        padding: 12px;
    }
    
.account-status-alert .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
}
    
    .alert-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .alert-title {
        font-size: 16px;
    }
    
    .alert-message {
        font-size: 13px;
    }
    
    .alert-actions {
        width: 100%;
    }
    
    .alert-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .account-status-alert {
        background: #2d2a1f;
        border-color: #5dade2;
    }
    
    .alert-icon {
        background: rgba(93, 173, 226, 0.2);
        color: #5dade2;
    }
    
    .alert-content {
        color: #5dade2;
    }
    
    .alert-title {
        color: #5dade2;
    }
    
    .alert-message {
        color: #5dade2;
    }
}

/* Animation for alert appearance */
.account-status-alert {
    animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.account-status-alert:hover {
    box-shadow: 0 4px 12px rgba(93, 173, 226, 0.15);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* Close button (optional) */
.alert-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    color: #856404;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

/* Status-specific styling */
.account-status-alert.status-pending {
    background: #fffbf0;
    border-color: #ffe69c;
}

.account-status-alert.status-suspended {
    background: #fff5f5;
    border-color: #fecaca;
}

.account-status-alert.status-suspended .alert-icon {
    background: rgba(220, 53, 69, 0.2);
    color: #721c24;
}

.account-status-alert.status-suspended .alert-content,
.account-status-alert.status-suspended .alert-title,
.account-status-alert.status-suspended .alert-message {
    color: #721c24;
}

.account-status-alert.status-suspended .alert-actions .btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.account-status-alert.status-suspended .alert-actions .btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}
