.audio-player-wrapper {
    margin: 1rem 0;
}

.speaker-grid {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.speaker-flag img{
    max-width: 24px;
}
.music-label {
    font-size: 2rem;
    font-weight: 600;
    color: #4a90e2;
    display: inline-block;
}

.speaker-label {
    font-size: 2rem;
    font-weight: 600;
    color: #4a90e2;
    min-width: 200px;
    display: inline-block;
}

.audio-player {
    display: flex;
    align-items: center;
}

.player-controls button {
    background: none;
    border: none;
    cursor: pointer;
}

.progress-wrapper {
    flex-grow: 1;
    margin-left: 1rem;
}

.progress-bar {
    height: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #4a90e2;
    transition: width 0.1s linear;
}

.speaker-info {
    position: relative;
}

.info-icon img {
    width: 35px;
    height: 35px;
}

.info-tooltip {
    display: none;
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    font-size: 0.8rem;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.info-icon:hover .info-tooltip {
    display: block;
}

.music-audio-players-container{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 1rem;
}
.music-audio-players-container .title,
.music-audio-players-container .author{
    display: block;
}

@media screen and (max-width: 980px) {
    .music-audio-players-container{
        columns: 1;
    }
    .et_pb_tab{
        padding: 24px 5px;
    }
}

@media screen and (max-width: 550px) {
    .audio-player{
        margin-left: auto;
        margin-right: 0;
    }

    .progress-wrapper {
        display: none;
    }
    .speaker-grid{
        gap: 5px;
    }
    .speaker-label {
        font-size: 1.50rem;
        font-weight: 600;
        color: #4a90e2;
        min-width: 150px;
        display: inline-block;
    }

}

@media screen and (max-width: 400px) {
    .audio-player .play-pause-btn {
        max-width: 50px;
    }
}