/* Default pill style */
.filter-btn {
    display: inline-block;
    padding: 6px 16px;
    margin: 4px;
    border: 2px solid #1a3a5c;
    border-radius: 50px;
    background-color: transparent;
    color: #1a3a5c;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Hover state */
.filter-btn:hover {
    background-color: #1a3a5c;
    color: #ffffff;
}

/* All button default active state */
.filter-btn.active {
    background-color: #1a3a5c;
    color: #ffffff;
    border-color: #1a3a5c;
}

/* Selected filter button */
.filter-btn.active-custom {
    background-color: #1a3a5c;
    color: #ffffff;
    border-color: #1a3a5c;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(26, 58, 92, 0.4);
}

/* Active filters display */
.active-filters {
    font-size: 13px;
    color: #555;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    margin-top: 10px;
}

.active-filters-label {
    font-weight: 700;
    color: #1a3a5c;
    margin-right: 6px;
}

.active-filter-tag {
    color: #1a3a5c;
    font-weight: 600;
}

.active-filters-divider {
    margin: 0 8px;
    color: #ccc;
}

.active-filter-count {
    font-weight: 700;
    color: #1a3a5c;
}

.dropdown-filters {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.filter-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a3a5c;
    margin-bottom: 6px;
}

.filter-select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #1a3a5c;
    border-radius: 6px;
    background-color: #ffffff;
    color: #1a3a5c;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a3a5c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.filter-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.2);
}
.filter-toggle-btn {
    background: transparent;
    border: 2px solid #1a3a5c;
    border-radius: 6px;
    color: #1a3a5c;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-toggle-btn:hover {
    background-color: #1a3a5c;
    color: #ffffff;
}