.tab-container {
    width: 100%;
    margin: 20px auto;
    overflow: hidden; /* Чтобы контент не вылезал за границы */
}

.tab-buttons {
    display: flex;
    background-color: #f0f0f0;
}

.tab-button {
    font-family: var(--font-family);
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    flex: 1; /* Равномерно распределить кнопки */
    text-align: center;
    transition: background-color 0.3s ease; /* Плавный переход */
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-button.active {
    background-color: #ccc;
    font-weight: bold;
}

.tab-content {
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.btn-radius {
    color: #000;
    text-decoration: none;
    border: 1px solid;
    padding: 6px 12px;
    border-radius: 30px;
}
