﻿/* ============================================
    Notifications
   ============================================ */

.ui-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    min-width: 300px;
    max-width: 500px;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
}

    .ui-notification.show {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

.ui-notification-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ui-notification-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.ui-notification-error {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.ui-notification-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
