.form-check-input:checked {
    background-color: #2c7da0;
    border-color: #2c7da0;
}

.form-check-input,
.form-check-label {
    cursor: pointer;
}

.hashtag-item {
    padding: 5px 10px;
    font-size: 12px;
    color: white;
    font-weight: 500;
    border-radius: 15px;
    border: 1px solid #6c757d;
}

.hashtag-item:hover {
    background-color: white !important;
    color: #6c757d;
    border: 1px solid #6c757d;
}

.hashtag-item.active {
    background-color: var(--color-primary-light) !important;
    color: #fff;
    border: 1px solid var(--color-primary-light);
}

.hashtag-item:hover {
    cursor: pointer;
}

/* ===== Active Filters Bar ===== */
.active-filters-bar {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
}

/* Header */
.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.filters-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.clear-all {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ef4444;
    text-decoration: none;
    transition: 0.2s ease;
}

.clear-all:hover {
    text-decoration: underline;
    color: #dc2626;
}

/* Chips container */
.filters-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Individual chip */
.filter-chip {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e8f4fc, #dbeafe);
    border-radius: 999px;
    padding: 6px 10px 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #014274;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Hover effect */
.filter-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(1, 66, 116, 0.15);
}

/* Text */
.chip-label {
    margin-right: 6px;
}

/* Remove button */
.chip-remove {
    border: none;
    background: rgba(1, 66, 116, 0.1);
    color: #014274;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Remove hover */
.chip-remove:hover {
    background: #ef4444;
    color: #fff;
    transform: scale(1.1);
}

/* ===== NON-REMOVABLE LABELS ===== */
.filter-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #334155;
}

/* Category (primary context) */
.filter-label--category {
    background: #dbeafe;
    color: #1d4ed8;
}

/* Subcategory (secondary context) */
.filter-label--sub {
    background: #e2e8f0;
    color: #475569;
}

/* Keep hashtags visually distinct */
.filter-chip {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e8f4fc, #dbeafe);
    border-radius: 999px;
    padding: 6px 10px 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #014274;
}

/* spacing consistency */
.filters-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
