html,
body {
  background: #fff;
}

.dark html,
.dark body,
.dark {
  background: #0b1220;
}

#map {
  height: 560px;
}

/* Να μην κόβεται το overlay του marker */
.leaflet-marker-icon {
  overflow: visible !important;
}

/* Popup: σταθερό πλάτος + wrap */
.leaflet-popup-content {
  margin: 0;
}

.leaflet-popup-content-wrapper {
  border-radius: 14px;
}

.popup-card {
  width: 300px;
  padding: 12px;
}

.popup-title {
  font-weight: 600;
  line-height: 1.25;
  word-break: break-word;
}

.popup-sub {
  font-size: 12px;
  color: #64748b;
}

/* Εικόνες: λευκό bg για transparent */
img.logo,
img.venue-thumb {
  background: #fff;
}

/* Μεγαλύτερο logo μέσα στο popup */
img.logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/* -------- Μεγαλύτερο Pin + logo badge πάνω -------- */

.pin-wrap {
  position: relative;
  width: 40px;   /* ήταν 25 */
  height: 64px;  /* ήταν 41 */
}

.pin-wrap img.pin {
  width: 40px;
  height: 64px;
  display: block;
}

.pin-wrap img.shadow {
  position: absolute;
  left: -6px;
  top: 2px;
  width: 52px;
  height: 52px;
  opacity: 0.5;
  pointer-events: none;
}

/* Μεγαλύτερο badge με logo */
.pin-wrap .badge {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 30px;   /* ήταν 20 */
  height: 30px;  /* ήταν 20 */
  border-radius: 9999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.pin-wrap .badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

/* Κάρτες */
.card {
  background: #fff;
}

.dark .card {
  background: #0f172a;
  border-color: #1f2937;
}

.event-list {
  list-style-type: disc;      /* κρατάει την τελίτσα */
  list-style-position: ; 
  text-align: justify;
}

.event-list li {
  padding-left: 0.3rem;       /* μικρό offset για καθαρή όψη */
}