/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    z-index: 1001;
    transform: translateX(400px);
    transition: transform var(--transition-normal);
    font-weight: 500;
    min-width: 300px;
    max-width: 400px;
}

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

.notification.success {
    background: var(--success-color);
}

.notification.error {
    background: var(--error-color);
}

.notification.info {
    background: var(--primary-color);
}

.notification.warning {
    background: var(--warning-color);
    color: var(--text-primary);
}

/* Notification animations */
.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.notification:hover {
    transform: translateX(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

/* Responsive notifications */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        min-width: auto;
        max-width: none;
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification:hover {
        transform: translateY(-5px) scale(1.01);
    }
}