/* =========================================================
   GLOBAL BACK BUTTON
   ========================================================= */

.global-back-button {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 950;
  min-height: 44px;
  padding: 0 16px 0 12px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 23, 53, 0.92);
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(3, 15, 35, 0.28);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.global-back-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(3, 15, 35, 0.34);
}

.global-back-button span {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 950;
}

.global-back-button strong {
  color: #ffffff;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .global-back-button {
    left: 12px;
    bottom: 12px;
    min-height: 42px;
    padding: 0 14px 0 10px;
  }

  .global-back-button strong {
    font-size: 0.82rem;
  }
}

/* Damit sich der Zurück-Button nicht mit Trainer/Live Mobile-Menü unten rechts beißt */
@media (max-width: 980px) {
  .global-back-button {
    right: auto;
    left: 12px;
  }
}
