/* Container for tabs */
.tabs {
    display: flex;
    overflow-x: auto;               /* Enables horizontal scrolling */
    white-space: nowrap;            /* Prevent wrapping */
    gap: 12px;
    padding: 10px;
    border-bottom: 2px solid #ccc;
    scrollbar-width: thin;          /* Firefox */
    scrollbar-color: #888 transparent;
}



.tab-content {
    margin-top: 10px
}
/* Avoid ugly scrollbars on WebKit browsers */
.tabs::-webkit-scrollbar {
    height: 6px;
}

.tabs::-webkit-scrollbar-track {
    background: transparent;
}

.tabs::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 3px;
}

/* Tab item */
.tab {
    flex: 0 0 auto;                  /* Prevent stretching */
    padding: 8px 16px;
    background: #eee;
    border-radius: 20px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
}
/* .tab {
    background: #ddd;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
} */

/* Hover effect */
.tab:hover {
    background: #ddd;
}

/* Active tab */
.tab.active {
    background: #0073ff;
    color: white;
}
/* .tab.active {
    background: #4285f4;
    color: white;
} */