nav {
  background: linear-gradient(to bottom, #198754, #24a01c); /* вертикальный градиент */
  padding: 10px 0;
  margin-bottom: 25px;
}

.header-action-container .my-header-content {
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  position: relative;
  display: flex;
  align-items: center;
  transition: background 0.3s, transform 0.2s;
  font-size: 1.2em;
  font-weight: 500;
}

.header-action-container .my-header-content:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  transform: translateY(-2px);
}

.header-action-container .my-header-content:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.my-fa-item {
  margin-right: 6px;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .header-action-container {
    flex-direction: column;
    align-items: stretch;
  }

  .header-action-container .my-header-content {
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .header-action-container .my-header-content::after {
    display: none;
  }
}


.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-nav a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.mobile-nav a i {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}
