/* tabs */

.tabs {
    display: flex;
    /* justify-content: center; */
}

.tabs_wrapper {
    overflow-x: auto;
    white-space: nowrap;
}


.tab_button {
    color: var(--color-text-dark);
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-right: 5px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-bottom: 2px solid transparent; 
    font-size: 16px;
    font-weight: 700;
}

.tab_button.active {
    border-bottom: 2px solid var(--color-primary); 
    color: var(--color-primary); 
}


.tab_button:hover {
    background-color: rgba(221, 221, 221, 0.2);
}

.tab_content {
    display: none;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    margin-top: -1px; 
    font-size: 16px;
    p {
        margin: 20px 0;
    }
}


.tab_content.active {
    display: block;
}