﻿.broadcast-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem;
    gap: 10px;
}

.operative-column {
    flex: 1 1 45%;
    min-width: 280px;
    padding: 0.5rem;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.yt-feed-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    font-family: var(--font-main);
    margin-bottom: 1.25rem;
    padding: 1rem 1rem;
    background-color: rgba(20, 24, 30, 0.55);
    border: 1px solid var(--color-primary-blue);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(79, 148, 212, 0.3);
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s ease;
}

    .yt-feed-card:hover {
        box-shadow: 0 0 30px rgba(79, 148, 212, 0.5);
    }

.operative-image {
    width: 200px;
}

    .operative-image:hover {
    }

.yt-feed-details {
    font-size: 0.9rem;
    color: white;
}

    .yt-feed-details p {
        margin: 0.25rem 0;
        padding: 0;
        line-height: 1.3;
    }

    .yt-feed-details h3 {
        margin: 0 0 0.25rem;
        font-size: 1.25rem;
    }

    .yt-feed-details h4 {
        margin: 0.25rem 0 0.25rem;
        font-size: 0.75rem;
    }

    .yt-feed-details a {
        color: #0040aa;
        text-decoration: none;
    }

        .yt-feed-details a:hover {
            text-decoration: underline;
        }

.no-video {
    font-style: italic;
    color: #aaa;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.operative-image {
    display: block;
    width: 200px;
    height: auto;
    border-radius: 6px;
}

.deep-dive-flyout {
    position: absolute;
    top: 8px; /* Adjust as needed to position */
    left: 50%;
    transform: translateX(-50%);
    background-color: #121212;
    color: #00ffe4;
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 0 8px rgba(0, 255, 228, 0.3);
    pointer-events: none;
}

.broadcast-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 6px solid #00ffff;
    border-top: 6px solid #222;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}