#dork-radio-player {
    background: #111111;
    color: #fff;
    font-family: Roboto Mono, sans-serif;
    height: 30px;
    text-transform: uppercase;
}

.dork-radio-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0px;
    height: 100%;
}

.dork-radio-info {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dork-radio-label {
    color: #03a9f4;
    font-weight: bold;
    text-transform: uppercase;
}

.dorklogofont {
    font-family:'Dork';
    margin-bottom:-1px;
}

#dork-current-track {
  font-weight:600;
}

.dork-radio-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dork-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    height: 20px;
    width: 20px;
}

.dork-btn:hover {
    background-color: #03a9f4;
}

.dork-btn svg {
    width: 16px;
    height: 16px;
}

#dork-volume-slider {
    width: 50px;
    height: 2px;
    -webkit-appearance: none;
    background: #444;
    border-radius: 1px;
    outline: none;
    margin: 0 4px;
}

#dork-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 6px;
    height: 6px;
    background: #03a9f4;
    border-radius: 50%;
    cursor: pointer;
}

#dork-volume-slider::-moz-range-thumb {
    width: 6px;
    height: 6px;
    background: #03a9f4;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.muted .volume-wave {
    display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #dork-volume-slider {
        width: 40px;
    }
}

.dork-big-play-button {
    cursor: pointer;
    color: white;
    transition: transform 0.2s ease;
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dork-big-play-button svg {
    width: 100%;
    height: 100%;
}

.dork-big-play-button:hover {
    transform: scale(1.05);
}

.dork-big-play-button.playing .play-symbol {
    display: none;
}

.dork-big-play-button.playing .pause-symbol {
    display: block;
}

.dork-big-play-button:not(.playing) .play-symbol {
    display: block;
}

.dork-big-play-button:not(.playing) .pause-symbol {
    display: none;
}