.otomoto-sound-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    max-width: 200px; /* Możesz dostosować rozmiar */
}

.otomoto-sound-button {
    width: 120px;
    height: 120px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.otomoto-sound-button:hover {
    transform: scale(1.05);
}

.otomoto-sound-button.is-playing {
    /* Możemy dodać efekt, gdy dźwięk jest odtwarzany, np. cień */
    box-shadow: 0 0 15px 5px rgba(0, 255, 13, 0.7);
    border-radius: 50%;
}

.otomoto-sound-player .sound-label {
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff; /* Dostosuj kolor do tła Twojej strony */
    letter-spacing: 1px;
}