/* =================================
   Hub Filter Pages
   File: hub-filter.css
================================= */

.checklist-filters {
    margin-bottom: 32px;
}

.checklist-filters .filter-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.checklist-filters .filter-category-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    min-width: 95px;
    margin-right: 4px;
}

.filter-btn {
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.26);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: rgba(125, 211, 252, 0.28);
    border-color: rgba(125, 211, 252, 0.9);
    color: #ffffff;
}

.filter-btn.clear-filters {
    background: rgba(255, 255, 255, 0.08);
    margin-top: 6px;
}

.checklist-card.hidden {
    display: none;
}

#noChecklistResults,
#noPrintableResults {
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
    text-align: center;
    width: 100%;
    font-weight: 600;
    display: none;
}

.checklist-label {
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.printable-meta {
    font-size: 0.9rem;
    opacity: 0.88;
    margin-top: 12px;
}

.printable-status {
    margin-top: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}


.item-card a.printable-link {
    color: #9fd3ff !important;
    font-weight: 600;
    text-decoration: underline;
}

.item-card a.printable-link:hover {
    color: #ffd6f5 !important;
}