/* File: beachcam.css */

/* Ensure the HDRelay player maintains a 16:9 aspect ratio */
.beachcam-video .hdrelay-player {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/* If the embed injects inner elements (iframe/div), make them fill the container */
.beachcam-video .hdrelay-player > * {
    width: 100%;
    height: 100%;
}

/* Optional tweaks for chat panel */
.beachcam-chat {
    background-color: #f9fafb;    /* Tailwind gray-100 */
    border: 1px solid #d1d5db;     /* Tailwind gray-300 */
    border-radius: 0.375rem;       /* Tailwind rounded */
    overflow: hidden;
}

#main-content .wcAvatar {
    margin-right: 0.5rem;
}

#main-content .wcInputButtons {
    margin-top: 0.5rem;
    display: flex;
    gap: 1rem;
}