.filter-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.filter-btn,
.apply-btn {
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    cursor: pointer;
    font-size: 13px;
}

.apply-btn {
    background: #0f4c81;
    color: #fff;
    border-color: #0b365b;
}

.filter-dropdown {
    position: relative;
}

.dropdown-panel {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    z-index: 1000;
    min-width: 420px;
}

.panel-cols {
    display: flex;
    gap: 10px;
}

.panel-col {
    flex: 1;
    max-height: 260px;
    overflow-y: auto;
}

.panel-col strong {
    display: block;
    margin-bottom: 6px;
}

.item {
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
}

.item:hover {
    background: #e8e8e8;
}

.hint {
    font-size: 12px;
    color: #777;
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: #f1f3f5;
    border-radius: 10px;
    font-size: 13px;
}

.active-item {
    background: #0f4c81;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.reset-btn {
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
}

.reset-btn:hover {
    background: #e8e8e8;
}
