#player-card-text {
    font-size: 20px;
    font-weight: bold;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-left: 0px;
    margin-right: auto;
    margin-bottom: 0px;
}

#player-card-circle {
    font-size: 30px;
    margin-left: auto;
    margin-right: 0px;
    margin-bottom: 0px;
    align-self: flex-end;
    display: none;
}

.dyon-slider {
    background: #4169E1;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 20px;
    outline: none;
    height: 10px;
}

.dyon-slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 18px; /* Set a specific slider handle width */
    height: 18px; /* Slider handle height */
    background: white; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius: 50%;
}
  
.dyon-slider::-moz-range-thumb {
    width: 18px; /* Set a specific slider handle width */
    height: 18px; /* Slider handle height */
    background: white; /* Green background */
    cursor: pointer; /* Cursor on hover */
    border-radius: 50%;
}

.center-ignore-others {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.station-picker-desktop .player-card {
    max-width: 252px !important;
    border-color: white !important;
    cursor: pointer;
}

.station-picker-desktop .player-card .gradient {
    width: 100%;
    height: 80px;
    bottom: 0;
    opacity: 1;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0.5));
}

.station-picker-desktop .player-card .gradient-hover {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    transition: opacity 0.2s ease-in-out;
    background-image: linear-gradient(119deg, #007CDF, #4169E1);
}

.station-picker-desktop .player-card:hover .gradient-hover {
    opacity: 0.87;
}