.xseries-wrapper {

}

.xseries-player {
    width: 100%;
    aspect-ratio: 16 / 9;
}
/* Target the custom button inside ArtPlayer controls */
.art-control .xseries-next-icon {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    opacity: 0.7;
    transition: opacity 0.2s ease-in-out;
}

.art-control .xseries-next-icon:hover {
    opacity: 1;
}
.xseries-meta-wrapper {
    background: #111;
    padding: 10px;
    color: #fff;
}

.xseries-title {
    font-size: 22px;
    font-weight: bold;
}

.xseries-episode-meta {
    font-size: 18px;
    color: #ccc;
}

.xseries-episode-buttons {
    display: flex
;
    gap: 1px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.xseries-episode-btn {
    background: #222;
    color: #fff;
    border: 0px;
    padding: 6px 12px;
    border-radius: 0px;
    cursor: pointer;
    transition: 0.2s;
    flex: auto;
}

.xseries-episode-btn:hover, .xseries-episode-btn.active {
    background: #E91E63;
    color: #ffffff;
}