.station-thumbnail 
{
    position: relative;
    display: flex;
    flex-direction: row;
    height: 60px;
    gap: 10px;
    padding: 4px;
    padding-right: 20px;
    border-radius: 100vw;
    margin-bottom: 5px;
    background: var(--station-background-color--);
    color: var(--station-foreground-color--);
    width: fit-content;
}

.station-thumbnail-launch-zone
{
    position: relative;
    max-height: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: 100vw;
    overflow: hidden;
    cursor: pointer;
}

.station-thumbnail-launch-zone > *
{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.station-thumbnail-launch-zone button
{
    background: #0008;
    border: none;
    color: white;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s all ease-out;
}

.station-thumbnail-launch-zone button:disabled
{
    display: none;
}

.station-thumbnail:hover button, .station-thumbnail:has(button.station-stop-button:not(:disabled)) button
{
    opacity: 1;
    transition: 0.2s all ease-out;
}

.station-thumbnail .station-thumbnail-info 
{
    align-self: center;

    display: flex;
    flex-direction: column;
}

.station-thumbnail .station-thumbnail-info .station-name
{
    font-weight: bold;
}

.station-thumbnail .station-thumbnail-info .station-frequency
{
    font-style: italic;
}


.player-overlay-radio-select-button:has(.player-overlay-radios-list:not(.closed))
{
    background: var(--alive-player-main-actions-shadow-hover)!important;
}

#alive-player-overlay-bar .player-overlay-radios-list
{
    position: absolute;
    bottom: 200%;
    background: var(--alive-player-overlay-background);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: start;
    opacity: 1;
    overflow: hidden;
    transition: 0.2s all ease-out;
}

#alive-player-overlay-bar .player-overlay-radios-list .radio-separator
{
    margin-left: 10px;
    margin-right: 10px;
    width: calc(100% - 20px);
    height: 1px;
    background: var(--alive-player-main-actions-shadow-hover);
}

#alive-player-overlay-bar .player-overlay-radios-list.closed
{
    pointer-events: none;
    opacity: 0;
    transition: 0.2s all ease-out;
}

#alive-player-overlay-bar .player-overlay-radios-list button
{
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    text-wrap: nowrap;
    box-sizing: border-box;
}

#alive-player-overlay-bar .player-overlay-radios-list button:hover
{
    background: black;
    transition: 0.1s all ease-out;
}

#alive-player-overlay-bar .player-overlay-radios-list button.current
{
    color: #f70000;
}


