video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.stream-button-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

button.btn.stream-button {
    background-color: #1d4ed8;
    /* Blue Color */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

button.btn.stream-button:hover {
    background-color: #1e3a8a;
    /* Darker Blue */
}

/* Active State for Video Selection */
button.btn.stream-button.active {
    background-color: #1e3a8a;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Tab buttons - adding basic styling since they weren't in user's CSS but exist in PHP */
.stream-category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.stream-tab-btn {
    background: #444;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.stream-tab-btn.active {
    background: #1d4ed8;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    /* .main-video-wrapper {
        width: 95%;
    } */

    .stream-button-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}