/* Apply font globally inside section */
.tsgcl-wrapper {
    font-family: "DM Sans", sans-serif;
}

/* Filter Bar */
.tsgcl-filter-bar {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.tsgcl-header{
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 40px;
}
/* Default Button Style */
.tsgcl-filter-btn {
    border-radius: 20px;
    border: 1px solid #5c6e82;
    background: #fff;
    color: #5c6e82;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 16px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

/* Active Button */
.tsgcl-filter-btn.active {
    background: #b22222;
    color: #fff;
}

/* Hover Effect */
.tsgcl-filter-btn:hover {
    background: #b22222;
    color: #fff;
}

@media (max-width: 768px) {
    .tsgcl-filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .tsgcl-filter-btn {
        flex: 0 0 auto;
    }
    
    .tsgcl-filter-bar::-webkit-scrollbar {
    height: 4px; /* reduce height */
}

.tsgcl-filter-bar::-webkit-scrollbar-track {
    background: #eee;
}

.tsgcl-filter-bar::-webkit-scrollbar-thumb {
    background: #b22222;
    border-radius: 10px;
}
}