#custom-audio-player {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    width: 100%;
    margin: 10px auto;
}

/* Pulsante Play/Pausa */
.play-pause-button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 20px;
}

/* Seek Bar */
.seek-bar-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #333;
}

.seek-bar {
    flex-grow: 1;
    -webkit-appearance: none;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    cursor: pointer;
}

.seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: #666;
    border-radius: 50%;
    cursor: pointer;
}

/* Volume */
.volume-button {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #666;
    width: 20px;
}

.volume-bar {
    width: 50px;
    -webkit-appearance: none;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    cursor: pointer;
}

.volume-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 50%;
    cursor: pointer;
}
