/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-we1v8nh8on] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-we1v8nh8on] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.site-header[b-we1v8nh8on] {
    align-items: center;
    border-bottom: 1px solid #21344f;
    display: flex;
    margin: 0 auto;
    max-width: 72rem;
    padding: 1.15rem 1.5rem;
}

.brand[b-we1v8nh8on] { color: #f3f7ff; font-size: 1.3rem; font-weight: 750; letter-spacing: -.03em; text-decoration: none; }
.site-header nav[b-we1v8nh8on] { margin-left: auto; margin-right: 1.5rem; }
.site-header nav a[b-we1v8nh8on] { color: #c4d0e0; font-size: .9rem; text-decoration: none; }
.site-header nav a:hover[b-we1v8nh8on] { color: #56d5c4; }
.environment[b-we1v8nh8on] { color: #a9bad1; font-size: .85rem; }
.site-header nav[b-we1v8nh8on] { display:flex; align-items:center; flex-wrap:wrap; gap:1rem; }
.site-header nav form[b-we1v8nh8on] { display:inline; margin:0; }
.site-header nav button[b-we1v8nh8on] { color:#c4d0e0; background:none; border:0; cursor:pointer; font:inherit; font-size:.9rem; padding:0; }
.site-header nav button:hover[b-we1v8nh8on] { color:#56d5c4; }
.site-header[b-we1v8nh8on] { flex-wrap:wrap; gap:.75rem; }
main[b-we1v8nh8on] { margin: 0 auto; max-width: 72rem; padding: 4rem 1.5rem; }
footer[b-we1v8nh8on] { border-top: 1px solid #21344f; color: #a9bad1; font-size: .85rem; padding: 1.5rem; text-align: center; }

@media (max-width: 36rem) {
    .site-header[b-we1v8nh8on] { padding: 1rem; }
    .environment[b-we1v8nh8on] { display: none; }
    .site-header nav[b-we1v8nh8on] { margin-right: 0; }
    main[b-we1v8nh8on] { padding: 2.5rem 1rem; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-x4lvmyj4h5],
.components-reconnect-repeated-attempt-visible[b-x4lvmyj4h5],
.components-reconnect-failed-visible[b-x4lvmyj4h5],
.components-pause-visible[b-x4lvmyj4h5],
.components-resume-failed-visible[b-x4lvmyj4h5],
.components-rejoining-animation[b-x4lvmyj4h5] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-x4lvmyj4h5],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-x4lvmyj4h5],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-x4lvmyj4h5],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-x4lvmyj4h5],
#components-reconnect-modal.components-reconnect-retrying[b-x4lvmyj4h5],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-x4lvmyj4h5],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-x4lvmyj4h5],
#components-reconnect-modal.components-reconnect-failed[b-x4lvmyj4h5],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-x4lvmyj4h5] {
    display: block;
}


#components-reconnect-modal[b-x4lvmyj4h5] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-x4lvmyj4h5 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-x4lvmyj4h5 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-x4lvmyj4h5 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-x4lvmyj4h5]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-x4lvmyj4h5 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-x4lvmyj4h5 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-x4lvmyj4h5 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-x4lvmyj4h5 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-x4lvmyj4h5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-x4lvmyj4h5] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-x4lvmyj4h5] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-x4lvmyj4h5] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-x4lvmyj4h5] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-x4lvmyj4h5] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-x4lvmyj4h5] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-x4lvmyj4h5 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-x4lvmyj4h5] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-x4lvmyj4h5 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/StationDetail.razor.rz.scp.css */
.back[b-xb8jrzh7uf] { color: #c4d0e0; text-decoration: none; }
.station-detail[b-xb8jrzh7uf] { max-width: 48rem; margin-top: 3rem; }
.station-detail h1[b-xb8jrzh7uf] { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.description[b-xb8jrzh7uf] { color: #c4d0e0; font-size: 1.15rem; line-height: 1.7; max-width: 42rem; }
.player[b-xb8jrzh7uf] { background: #10243d; border: 1px solid #213d60; border-radius: .75rem; margin-top: 2.5rem; padding: 1.5rem; }
.player h2[b-xb8jrzh7uf] { margin-top: 0; }
.player audio[b-xb8jrzh7uf] { display: block; margin: 1rem 0; max-width: 100%; width: 100%; }
.player a[b-xb8jrzh7uf], .notice a[b-xb8jrzh7uf] { color: #56d5c4; font-weight: 700; }
.unavailable[b-xb8jrzh7uf] { color: #b6c5d8; margin-top: 2rem; }
/* /Components/Pages/Stations.razor.rz.scp.css */
.page-heading[b-mv7ezwmx2v] { max-width: 42rem; }
.page-heading h1[b-mv7ezwmx2v] { font-size: clamp(2.5rem, 6vw, 4rem); }
.page-heading > p:last-child[b-mv7ezwmx2v] { color: #c4d0e0; font-size: 1.1rem; line-height: 1.6; }
.station-grid[b-mv7ezwmx2v] { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); margin-top: 3rem; }
.station-card[b-mv7ezwmx2v], .notice[b-mv7ezwmx2v] { background: #10243d; border: 1px solid #213d60; border-radius: .75rem; padding: 1.5rem; }
.station-card h2[b-mv7ezwmx2v] { margin: .8rem 0; }
.station-card p[b-mv7ezwmx2v] { color: #b6c5d8; line-height: 1.5; }
.station-card a[b-mv7ezwmx2v] { color: #56d5c4; font-weight: 700; text-decoration: none; }
.state[b-mv7ezwmx2v] { font-size: .75rem; font-weight: 800; letter-spacing: .08em; }
.state.on-air[b-mv7ezwmx2v] { color: #56d5c4; }
.state.offline[b-mv7ezwmx2v] { color: #a9bad1; }
.notice[b-mv7ezwmx2v] { margin-top: 3rem; max-width: 42rem; }
