.custom-tabs {
    list-style: none;
    border-radius: 6px;
    display: inline-flex;
    gap: 10px;
    cursor: pointer;
    background-color: #2F2E2E;
    padding: 10px !important;
}

.custom-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-tab {
    padding: 10px 30px;
    background: #1C1A1F;
    border-radius: 6px;
    color: #FFFFFF;
    transition: background 0.3s, color 0.3s;
    list-style: none;
}

.custom-tab:hover {
    background: #B6B6B6;
    color: #000000;
}

.custom-tab.active {
    background: #B6B6B6;
    color: #000000;
}

.custom-tab-content {
    display: none;
    margin-top: 10px;
}

.custom-tab-content.active {
    display: block;
}
