.map-wrapper {
  flex: 1;
  min-height: 0;
  display: flex;
  position: relative;
}
#map { flex: 1; }

/* Tooltip Container */
.cinemap-tooltip {
  font-size: 13px;
  line-height: 1.4;
  padding: 0 14px 10px 14px; /* kein oberes Padding */
  max-width: 300px;
  color: var(--fg);
}

.cinemap-tooltip small {
  display: block;         /* sorgt für sauberen Zeilenumbruch */
  font-size: 0.85em;      /* etwas kleiner als normaler Text */
  color: #666;            /* dezentes Grau statt Schwarz */
  margin-top: 2px;        /* leichter Abstand zur Hauptzeile */
  letter-spacing: 0.2px;  /* etwas schmaler im Schriftbild */
}

/* Kino-Name & Adresse */
.cinemap-tooltip__name a {
  display: inline-block;
  text-decoration: none;
  color: var(--fg);
  font-weight: 700;
  font-size: 1.1rem; /* leicht kleiner, wirkt harmonischer */
  margin-bottom: 4px;
}

/* Adresse */
.cinemap-tooltip__addr a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 6px;
}

.cinemap-tooltip__name a:hover,
.cinemap-tooltip__addr a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
}

/* Preis */
.cinemap-tooltip__price {
  font-size: 0.9rem;       /* etwas kleiner */
  font-weight: 400;        /* normaler Fließtext */
  color: var(--fg);        /* normale Textfarbe */
  margin-bottom: 6px;
}

.cinemap-tooltip__price strong {
  font-weight: 700;        /* nur die Zahl fett */
  color: var(--accent);    /* und in Akzentfarbe */
}

/* Links-Block (falls vorhanden) */
.cinemap-tooltip__links {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent);
}

/* Verkäuferblock */
.cinemap-tooltip__seller {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

/* Verkäufer-Bild */
.seller-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,0.08);
}

/* Verkäufer-Label */
.seller-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 2px;
}

/* Verkäufer-Name */
.seller-name {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.seller-name a {
  color: var(--fg);
  text-decoration: none;
}

.seller-name a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Google Maps UI */
.gm-style-iw { 
  padding: 0 !important;
  max-height: none !important;
  top: 0 !important;
  pointer-events: auto !important;  
}

.gm-style-iw-d { 
  overflow-y: auto !important;
  overflow-x: hidden !important;
  max-height: 80vh !important;
  pointer-events: auto !important;
}

/* Spitze / Abstandhalter neutralisieren statt löschen */
.gm-style-iw-t {
  height: 0 !important;
  margin: 0 !important;
}
/*gm-ui-hover-effect { display:none!important; }*/
