body {
    font-family: Arial, Helvetica, sans-serif;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    background-color: rgba(0,0,0,0.5);
    font-size: 50px;
    z-index: 2;
}

.header {
    padding-bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header-title {
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 20px;
}

.header-buttons {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.btn {
    font-size: 20px;
    font-weight: bold;
    width: 100px;
    height: 50px;
    padding: 5px;
    margin-right: 5px;
    background-color: #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.btn-on {
    background-color: #006600;
    color: #ffffff;
}

.category {
    padding-bottom: 35px;
}

.category-title {
    font-weight: bold;
    font-size: 25px;
    padding-bottom: 10px;
}

.category-stations {
    display: grid;
    grid-gap: 0;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
}

.station {
    height: 75px;
    padding: 5px;
    margin: 0 5px 5px 0;
    background-color: #CCCCCC;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.station-playing {
    background-color: #006600;
    color: #ffffff;
}

.station-loading {
    background-color: #ffcc00;
}

.station-pan-controls {
    font-size: 16px;
    position: absolute;
    left: 0;
    bottom: 0;
    padding-left: 3px;
    background-color: rgba(100,100,100,0.75);
}

.station-pan-l {
    float: left;
    padding: 2px 5px;
}
.station-pan-r {
    float: right;
    padding: 2px 5px;
}

.pan-off {
    color: grey;
}

.hidden {
    display: none !important;
}