/* TVFL Categories Widget */

.tvfl-categories {
    width: 100%;
}

.tvfl-cat-empty {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ── MODIFIERS ───────────────────────────────────────────────────────── */

.tvfl-cat--no-divider .tvfl-cat-item {
    border-bottom: none;
}

.tvfl-cat--no-count-bg .tvfl-cat-count {
    background-color: transparent;
    padding: 0;
    min-width: auto;
    height: auto;
}

/* ── LIST ────────────────────────────────────────────────────────────── */

.tvfl-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tvfl-cat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tvfl-cat-item:last-child {
    border-bottom: none;
}

/* ── ITEM LINK ───────────────────────────────────────────────────────── */

.tvfl-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    text-decoration: none;
    transition: background-color 0.2s;
}

/* ── CATEGORY NAME ───────────────────────────────────────────────────── */

.tvfl-cat-name {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s;
}

/* ── COUNT BADGE ─────────────────────────────────────────────────────── */

.tvfl-cat-count {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    padding: 0 6px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    transition: background-color 0.2s, color 0.2s;
}
