.m3u-player-container {
    max-width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.m3u-player {
    background: #000;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.m3u-player:focus {
    outline: none;
}

.m3u-playlist {
    margin-top: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.m3u-playlist-item {
    padding: 8px 12px;
    margin: 4px 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    line-height: 1.4;
}

.m3u-playlist-item:hover {
    background: #f0f0f0;
    transform: translateX(2px);
}

.m3u-playlist-item.active {
    background: #e0e0e0;
    border-color: #999;
    font-weight: bold;
    color: #2271b1;
    padding-left: 16px;
}