/* ======================================================
   Regio360 – Geolokalisierung (Mobile only, on click)
   Datei: GeoLocation.css
   ====================================================== */

/* Button standardmäßig aus */
#geoBtnWrap {
  display: none;
}

/* Nur Mobile anzeigen */
@media (max-width: 768px) {
  #geoBtnWrap {
    position: fixed;
    left: 50%;
    bottom: 85px;              /* über deinem Wetter-Button (bottom:30px) */
    transform: translateX(-50%);
    z-index: 10001;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
  }

  .geo-btn {
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;

    color: #fff;
    background: linear-gradient(to bottom, #00c27a 0%, #00a463 100%);
    box-shadow:
      0 6px 18px rgba(0,0,0,.28),
      inset 0 1px 0 rgba(255,255,255,.30);
  }

  .geo-btn:hover { filter: brightness(1.06); }

  .geo-btn:active{
    transform: translateY(1px);
    box-shadow:
      0 4px 12px rgba(0,0,0,.25),
      inset 0 1px 0 rgba(255,255,255,.20);
  }

  .geo-btn.is-on{
    background: linear-gradient(to bottom, #ff5a5f 0%, #d94045 100%);
  }

  .geo-mini {
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(0,0,0,.25);
    color: rgba(255,255,255,.9);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.1;
    max-width: 56vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
