.gtts-player {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 16px;
    margin: 1.2em 0;
    font-family: inherit;
}

.gtts-player__label {
    font-size: 0.85em;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

.gtts-player audio {
    flex: 1;
    min-width: 0;
    height: 36px;
}

@media (max-width: 480px) {
    .gtts-player {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    .gtts-player audio {
        width: 100%;
    }
}
