/* Notification System Styles */

#notification-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#notification-bar.show {
    transform: translateY(0);
}

#notification-bar.success {
    background-color: #10b981;
    color: white;
    border-bottom: 3px solid #059669;
}

#notification-bar.error {
    background-color: #ef4444;
    color: white;
    border-bottom: 3px solid #dc2626;
}

#notification-bar.info {
    background-color: #3b82f6;
    color: white;
    border-bottom: 3px solid #2563eb;
}

/* Animation for fade out */
#notification-bar.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
} 