.moves-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.moves-filters input,
.moves-filters select {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.moves-filters input:focus,
.moves-filters select:focus {
    border-color: #00c3ff;
    box-shadow: 0 0 0 2px rgba(0,195,255,0.2);
    outline: none;
}
.active-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.filter-chip {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.filter-chip:hover {
    background: #ff4d4d;
}
.sets-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.set-btn {
    background: #1e293b;
    color: #cbd5f5;
    border: 1px solid #334155;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.set-btn:hover {
    background: #334155;
}

.set-btn.active {
    background: #16C784;
    color: #022c22;
    border-color: #16C784;
    font-weight: 600;
}
.month-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.sort-bar {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sort-bar a {
    padding: 5px 10px;
    background: #2a2a40;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
}

.sort-bar a:hover {
    background: #444;
}
.sort-bar a.active {
    background: #6f35fc;
}
.filter-label {
    font-size: 12px;
    color: #888;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}