
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dark theme base colors */
:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #121212;
    --accent-primary: #00ff88;
    --accent-secondary: #00ccff;
    --text-light: #ffffff;
    --text-muted: #888888;
}

.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

/* Navbar styling */
.navbar {
    background-color: var(--bg-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand i {
    color: var(--accent-primary);
}

/* Cards styling */
.card {
    background-color: var(--bg-darker) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stream grid */
.stream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.stream-preview {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    position: relative;
}

.stream-preview .metrics {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.5rem;
    border-radius: 4px;
    color: var(--accent-primary);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-primary);
    border: none;
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--accent-secondary);
}

/* Feature cards */
.feature-card {
    background-color: var(--bg-darker);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

/* Analytics section */
.analytics-panel {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.analytics-value {
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stream-grid {
        grid-template-columns: 1fr;
    }
}

/* Recording status indicator */
.recording-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.5rem;
    border-radius: 4px;
}

.recording-indicator.active {
    animation: pulse 2s infinite;
}

.recording-indicator i {
    color: var(--accent-primary);
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Stream status badges */
.status-badge {
    margin-bottom: 1rem;
}

.status-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}