/* app/static/css/components/menu_bottom.css */
.bottom-menu-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: white;
  border-top: 1px solid #dee2e6;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none; /* Скрыто на десктопе */
}

/* Показываем только на мобильных */
@media (max-width: 768px) {
  .bottom-menu-nav {
    display: block;
  }

  body {
    padding-bottom: 60px;
  }
}

.bottom-menu-list {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bottom-menu-item {
  flex: 1;
  text-align: center;
}

.bottom-menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  color: #6c757d;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.bottom-menu-link:hover {
  color: #495057;
  text-decoration: none;
}

.bottom-menu-link_active {
  color: #007bff !important;
}

.bottom-menu-link_active .bottom-menu-icon {
  color: #007bff;
}

.bottom-menu-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #6c757d;
  transition: color 0.2s ease;
}

.bottom-menu-title {
  font-size: 0.7rem;
  line-height: 1.2;
}

