/* Стили для уведомлений */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 280px;
    max-width: 400px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 2000;
}

.notification.show {
    transform: translateX(0);
}

.notification i {
    font-size: 24px;
    flex-shrink: 0;
}

.notification span {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

/* Типы уведомлений */
.notification-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.notification-success i {
    color: #4caf50;
}

.notification-error {
    background: #ef4444;
    color: white;
    border-left: 4px solid #dc2626;
    font-weight: 600;
}

.notification-error i {
    color: white;
}

.notification-warning {
    background: #fbbf24;
    color: #1f2937;
    border-left: 4px solid #f59e0b;
    font-weight: 600;
}

.notification-warning i {
    color: #1f2937;
}

.notification-info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #2196f3;
}

.notification-info i {
    color: #2196f3;
}

/* Мобильная адаптация */
@media (max-width: 480px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}
