/* ── Server tabs (Vietsub / Lồng Tiếng / Thuyết Minh...) ─────────────────── */
.cmc-player-wrapper {
    margin: 10px 0;
}

.cmc-server-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.cmc-server-label {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
}

.cmc-server-tab {
    background: #1e2a38;
    color: #ccc;
    border: 1px solid #2d3f52;
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    line-height: 1.4;
}

.cmc-server-tab:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
}

.cmc-server-tab.active {
    background: #e50914;
    color: #fff;
    border-color: #e50914;
    font-weight: 600;
}

/* ── Episode list ──────────────────────────────────────────────────────────── */
.cmc-episode-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.cmc-episode-list::-webkit-scrollbar { width: 4px; }
.cmc-episode-list::-webkit-scrollbar-track { background: #111; }
.cmc-episode-list::-webkit-scrollbar-thumb { background: #444; border-radius: 2px; }

.cmc-ep-btn {
    display: inline-block;
    padding: 5px 12px;
    background: #1e2a38;
    color: #ccc;
    border: 1px solid #2d3f52;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
}

.cmc-ep-btn:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
    text-decoration: none;
}

.cmc-ep-btn.active {
    background: #e50914;
    color: #fff;
    border-color: #e50914;
    font-weight: 600;
}
