.custom-tabs-container {
    display: inline-flex;
    background-color: #0F1122;
    padding: 5px;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    user-select: none;
    min-width: 200px;
    gap: 8px;
}

.custom-tab {
    padding: 10px 25px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-align: center;
}

.custom-tab.active {
    background-color: #F97316;
    /* width: 42%; */
    /* right: 8px; */
}

.custom-tab:not(.active) {
    /* width: 48%; */
    background-color: transparent;
}

/* Hover effect for non-active tab */
.custom-tab:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.1);
}
