.left-menu {
  width: 60px;
  background-color: #111;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Это опустит Instagram вниз */
  align-items: center;
  padding: 10px 0;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.menu-list li {
  text-align: center;
  padding: 12px 0; /* Меньше отступ, компактнее */
  transition: background-color 0.3s;
}

.menu-list li a img {
  width: 22px; /* Уменьшаем иконки */
  height: 22px;
  filter: grayscale(100%);
  transition: filter 0.3s, transform 0.3s;
}

.menu-list li.active {
  background-color: #8cc63f;
}

.menu-list li.active a img {
  filter: none;
}

.menu-list li:hover a img {
  filter: grayscale(0%) brightness(1.2);
  transform: scale(1.1);
}

.menu-bottom {
  margin-bottom: 30px; /* Поднимаем Instagram над краем */
}

.menu-bottom a img {
  width: 22px;
  height: 22px;
  filter: grayscale(100%);
  transition: filter 0.3s, transform 0.3s;
}

.menu-bottom a img:hover {
  filter: grayscale(0%) brightness(1.2);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
    .left-menu { /* Или тот класс, который оборачивает leftblock.php */
        display: none;
    }
}
