/* Server-Selector: breite Login-Box für mehrere Karten nebeneinander */
.login-box.server-selector {
  width: 100%;
  max-width: 1200px; /* anstatt 360px */
}

/* Karten-Design */
.server-selector .guild-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.server-selector .card {
  transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
  border-radius: 10px;
}

.server-selector .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

/* Karten gleiche Höhe mit flexibler Inhaltsausrichtung */
.server-selector .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Button immer unten ausrichten */
.server-selector .btn {
  margin-top: auto;
}