/* Estilo geral do player */
.lda-player-wrapper {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #f7f7f7;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin-bottom: 25px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Botão principal de Play/Pause */
.lda-control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    fill: #555;
    transition: transform 0.1s ease;
}
.lda-control-btn:hover {
    fill: #000;
}
.lda-control-btn:active {
    transform: scale(0.9);
}

#lda-play-pause-btn {
    width: 40px;
    height: 40px;
    background-color: #e9e9e9;
    border-radius: 50%;
    margin-right: 15px;
}
#lda-play-pause-btn svg {
    width: 24px;
    height: 24px;
}

/* Container da barra de progresso e tempo */
.lda-progress-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.lda-time {
    font-size: 13px;
    color: #666;
    min-width: 45px;
    text-align: center;
}

.lda-progress-bar-wrapper {
    flex-grow: 1;
    height: 6px;
    background-color: #ddd;
    border-radius: 3px;
    margin: 0 15px;
    cursor: pointer;
}

.lda-progress-bar {
    width: 0%;
    height: 100%;
    background-color: #555;
    border-radius: 3px;
}

/* Controles da direita (seek, speed) */
.lda-controls-right {
    display: flex;
    align-items: center;
}

.lda-seek-btn svg {
    width: 20px;
    height: 20px;
}
.lda-seek-btn span {
    font-size: 11px;
    font-weight: bold;
    color: #555;
    position: relative;
    right: 12px;
    top: 1px;
}

.lda-speed-btn {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 8px;
    margin-left: 15px;
    background-color: #fff;
}
.lda-speed-btn:hover {
    border-color: #999;
}