/* Desktop/tablet: show pills, hide select */
.continents-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px auto;
}

.continents-container a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #eef2ff;
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  transition: background .15s, box-shadow .15s, transform .05s, border-color .15s;
}

.continents-container a:hover {
  background: #dbeafe;
}

.continents-container a.is-active {
  color: #fff;
  background: #35506d;
  border-color: #93c5fd;
}

.continents-select-wrap {
  display: none;
  justify-content: center;
  margin: 12px auto;
}

.continents-select-label {
  display: none;
  margin-bottom: 6px;
  font-weight: 600;
  color: #1f2937;
}

.continents-select {
  height: 44px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .06);
}

/* Mobile: hide pills, show select */
@media (max-width: 480px) {
  .continents-container {
    display: none;
  }

  .continents-select-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .continents-select-label {
    display: block;
    text-align: center;
  }
}