/* Remove default arrow */
.other-sites-toggle {
  list-style: none;
  cursor: pointer;
  padding: 10px;
  display: inline-block;
  margin: 0px 0px 10px 0px;
  text-align: center;
  font-weight: bold;
}

.other-sites-toggle::-webkit-details-marker {
  display: none;
}

/* Optional hover */
.other-sites-toggle:hover {
  background-color: var(--light-bg-color);
}

/* Container */
.other-sites-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.75rem;
  margin-bottom: 40px;
}

/* Box */
.other-site-box {
  min-width: 140px;
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  padding: 5px;
}

.other-site-box:hover {
  background-color: var(--light-bg-color);
  text-decoration: none;
}

.other-sites-toggle::after {
  content: " ▾";
}

.other-sites-wrapper[open] .other-sites-toggle::after {
  content: " ▴";
}
