
/* Walking Connect shared language selector */

.wc-page-language {
  display: inline-flex !important;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  padding: 3px;
  margin-right: 12px;
  height: 38px;

  border: 1px solid #e2e8f0;
  border-radius: 999px;

  background: #f1f5f9;
}

.wc-page-language button {
  appearance: none;
  border: 0;
  background: transparent;

  min-width: 32px;
  height: 30px;
  padding: 0 7px;

  border-radius: 999px;

  color: #64748b;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;

  cursor: pointer;
}

.wc-page-language button.active {
  background: white;
  color: #2563eb;

  box-shadow:
    0 1px 2px rgba(15,23,42,.08),
    0 2px 7px rgba(15,23,42,.08);
}

.wc-page-language-floating {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 9999;
}

@media (max-width: 900px) {

  .wc-page-language {
    margin-right: 5px;
    height: 34px;
    padding: 2px;
  }

  .wc-page-language button {
    min-width: 27px;
    height: 28px;
    padding: 0 5px;
    font-size: 10px;
  }

}
