.toggle-button {
    width: 194px;
    height: 40px;
    background-color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 140%;
    font-weight: 700;
    border-radius: 10px;
}

.toggle-button_active {
    border: 2px solid var(--green-color);
}

.active-page {
    display: block;
}

.inactive-page {
    display: none;
}

@media screen and (max-width: 768px) {
    .toggle-button {
        width: 160px;
    }
    
}