/* Wetter-Button – immer unten zentriert */
#weatherBtn{
  position: fixed;
  bottom: 30px;              /* einheitliche Position Desktop + Mobile */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;

  /* dezenter vertikaler Farbverlauf (oben heller, unten dunkler) */
  background: linear-gradient(
    to bottom,
    #4f8dff 0%,
    #1e73ff 100%
  );

  color: #ffffff;

  border: none;
  border-radius: 10px;       /* leichte Wölbung */
  padding: 10px 18px;

  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;
  white-space: nowrap;

  /* Tiefe wie beim Photoshop-Button */
  box-shadow:
    0 6px 18px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
}

/* Hover: minimal, hochwertig */
#weatherBtn:hover{
  filter: brightness(1.06);
}

/* Active: kleiner "Klick-Effekt" */
#weatherBtn:active{
  transform: translateX(-50%) translateY(1px);
  box-shadow:
    0 4px 12px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.25);
}

/* Mobile: minimal kompakter */
@media (max-width: 600px){
  #weatherBtn{
    bottom: 30px;
    font-size: 13px;
    padding: 9px 16px;
  }
}