/* ==========================================================================
   Case Study Filter
   Styles for the sector & application filter on the case studies page
   ========================================================================== */

.cs-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 10px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

.cs-filter-bar .filter-label {
    font-weight: 700;
    font-size: 16px;
    margin-right: 5px;
    color: #002855;
}

.cs-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
}

.cs-filter-btn {
    padding: 8px 20px;
    border: 2px solid #002855;
    background: transparent;
    color: #002855;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cs-filter-btn:hover {
    background: #002855;
    color: #fff;
}

.cs-filter-btn.active {
    background: #002855;
    color: #fff;
}

.cs-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    width: 100%;
}

.cs-loading {
    text-align: center;
    padding: 60px 20px;
    color: #002855;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}