/* Notifications */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(0, 255, 136, 0.9);
    color: #000;
    padding: 15px 25px;
    border-radius: 10px;
    animation: slideInRight 0.3s ease;
    z-index: 3000;
    cursor: pointer;
    max-width: 300px;
}

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

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

/* Alert Banner */
.alert-banner {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 68, 68, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 999;
    transform: translateY(-100%);
}

.alert-banner.show {
    transform: translateY(0);
}

/* Connection Status */
.connection-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    z-index: 100;
    pointer-events: none;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .connection-status {
        bottom: 80px;
    }
}

/* Offline indicator */
.offline-indicator {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 68, 68, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.offline-indicator.show {
    display: flex;
}

/* Error state */
.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}