.batak-player {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    margin: 16px 0;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    font-family: Arial, sans-serif;
}

.batak-player-cover {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222 !important;
    color: #fff !important;
    font-size: 21px;
}

.batak-player-main {
    flex: 1;
    min-width: 0;
}

.batak-player-info {
    margin-bottom: 7px;
}

.batak-player-title {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    color: #222 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.batak-player-artist {
    margin-top: 2px;
    font-size: 12px;
    color: #777 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.batak-player-controls {
    display: flex;
    align-items: center;
    gap: 9px;
}

/* PLAY / PAUSE BUTTON */
.batak-player .batak-play {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #222 !important;
    color: #fff !important;
    box-shadow: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    text-align: center !important;
    opacity: 1 !important;
}

.batak-player .batak-play:hover {
    background: #000 !important;
    color: #fff !important;
}

.batak-player .batak-play:focus {
    outline: 2px solid #888 !important;
    outline-offset: 2px !important;
}

.batak-player .batak-play-icon {
    display: block !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.batak-player .batak-play.is-playing .batak-play-icon {
    font-size: 12px !important;
    letter-spacing: -1px;
}

/* VOLUME BUTTON */
.batak-player .batak-volume {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #78909c !important;
    cursor: pointer !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

.batak-player .batak-volume:hover {
    color: #222 !important;
}

.batak-progress-wrap {
    flex: 1;
    min-width: 0;
}

.batak-player .batak-progress {
    display: block;
    width: 100%;
    margin: 0;
    cursor: pointer;
    accent-color: #1976d2;
}

.batak-times {
    display: flex;
    justify-content: space-between;
    margin-top: 3px;
    font-size: 10px;
    color: #888 !important;
}

.batak-yt-host {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    left: -9999px !important;
    top: -9999px !important;
    overflow: hidden !important;
}

@media (max-width: 600px) {
    .batak-player {
        padding: 10px 11px;
        gap: 9px;
        margin: 12px 0;
    }

    .batak-player-cover {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 18px;
    }

    .batak-player-title {
        font-size: 13px;
    }

    .batak-player-artist {
        font-size: 11px;
    }

    .batak-player-controls {
        gap: 6px;
    }

    .batak-player .batak-play {
        flex-basis: 32px !important;
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }
}
