.header {
    padding: 12px 16px;
    margin-bottom: 20px;
    background: var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Логотип */
.header__logo-link {
    display: flex;
    align-items: center;
}

.header__logo-img {
    height: 28px;
    object-fit: contain;
    margin-right: 20px;
}

.header__logo-name {
    font-size: 20px;
    color: white;
    font-weight: bold;
}
  /* Контейнер с кнопками */
    .header__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    }
    
  /* Кнопки */
    .header__control {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    border-radius: 8px;
    }

    .header__control:hover {
    background-color: rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
    }