.lang-switcher-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 1rem;
  padding-top: 2rem;
}

.lang-switcher {
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.lang-option {
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #555;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.lang-option:not(:last-child) {
  border-right: 1px solid #ccc;
}

.lang-option:hover {
  background: #f0f0f0;
}

.lang-option.active {
  background: #0096c7;
  color: white;
  font-weight: 500;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-block {
  display: flex;
  flex-direction: row-reverse;

  gap: 10px;
}

@media screen and (max-width: 478px) {
  .top-flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lang-switcher-wrapper {
    margin-left: 0;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
