/* Notification System Styles */
#notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 99999;
    max-width: 400px;
}

.notification {
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-medium);
    border-left: 4px solid var(--primary-color);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

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

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

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

.notification-error {
    border-left-color: var(--danger-color);
}

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

.notification-warning {
    border-left-color: var(--warning-color);
}

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

.notification-info {
    border-left-color: var(--info-color);
}

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

/* Notification content */
.notification {
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    #notification-container {
        top: 70px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        margin-bottom: 0.5rem;
        padding: 0.75rem 1rem;
    }
} 