/* Упрощенная шапка для НЕ главных страниц */

.header--simple {
    background: var(--color-bg-primary);
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom: none;
}

.header--simple .header__top_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header--simple .top_menu__left_section {
    display: flex;
    align-items: center;
}

.header--simple .top_menu__logo img {
    height: 40px;
    width: auto;
}

/* Кнопка "Помощь" */
.help-button {
    background: var(--color-background-light);
    width: 110px;
    height: 40px;
    border-radius: 120px;
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none;
}

.help-button:hover {
    background: var(--color-border-gray);
    color: var(--color-text-primary);
}

/* Мобильная версия упрощенной шапки */
@media (max-width: 768px) {
    .header--simple .top_menu__logo img {
        height: 32px;
    }

    .header--simple {
        padding: 15px 0;
    }
    
    .help-button {
        width: 90px;
        height: 36px;
        padding: 8px 16px;
        font-size: 13px;
    }
} 