/* Notification Container */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

/* Notification Styles */
.notification {
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    animation: slideIn 0.3s ease-out;
}

.notification.fade-out {
    animation: slideOut 0.3s ease-in forwards;
}

.notification.success {
    border-left: 4px solid #28a745;
    background: #f0fff4;
}

.notification.success .notification-title {
    color: #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
    background: #fff5f5;
}

.notification.error .notification-title {
    color: #dc3545;
}

.notification.info {
    border-left: 4px solid #17a2b8;
    background: #f0f7ff;
}

.notification.info .notification-title {
    color: #17a2b8;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 14px;
    color: #666;
}

/* Error Banner */
.error-banner {
    position: fixed;
    top: 60px;
    right: 20px;
    background: #dc3545;
    color: white;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    cursor: pointer;
    z-index: 999;
    animation: slideIn 0.3s ease-out;
}

.error-banner p {
    margin: 0;
    color: white;
}

/* Info Box */
.info {
    background: #e7f3ff;
    padding: 15px;
    border-left: 4px solid #667eea;
    margin: 15px 0;
    border-radius: 4px;
}

.info strong {
    color: #333;
}

/* Empty State */
.empty-state {
    background: white;
    padding: 60px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.empty-state h2 {
    color: #333;
    margin-bottom: 15px;
}

.empty-state p {
    color: #666;
    margin: 15px 0;
}

.empty-results {
    background: white;
    padding: 60px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.empty-results-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.empty-results p {
    color: #666;
    margin: 15px 0;
}
