/* Alerts Premium - Global Styles */

/* Bootstrap Alert Overrides */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: none;
    border-left: 5px solid;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.alert-success {
    background-color: #ecfdf5;
    color: #047857;
    border-color: #10b981;
}

.alert-danger {
    background-color: #fef2f2;
    color: #b91c1c;
    border-color: #ef4444;
}

.alert-warning {
    background-color: #fffbeb;
    color: #92400e;
    border-color: #f59e0b;
}

.alert-info {
    background-color: #eff6ff;
    color: #1e40af;
    border-color: #3b82f6;
}

/* Animations */
@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* SweetAlert2 Technical Theme Overrides */
.swal2-popup {
    border-radius: 16px !important;
    font-family: 'Inter', sans-serif !important;
    padding: 2rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.swal2-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    letter-spacing: -0.025em !important;
}

.swal2-html-container {
    color: #64748b !important;
    font-size: 1.05rem !important;
}

.swal2-styled.swal2-confirm {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    border-radius: 8px !important;
    padding: 0.8rem 2rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.3) !important;
}

.swal2-styled.swal2-cancel {
    background: #f1f5f9 !important;
    color: #64748b !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0.8rem 2rem !important;
    font-weight: 600 !important;
}

.swal2-icon {
    border-width: 3px !important;
}

/* Toast Progress Bar */
.swal2-progress-steps .swal2-active-step {
    background: #3b82f6 !important;
}
