/* EMK-Tabellen allgemein */
.emk-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
}

.emk-table th,
.emk-table td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  vertical-align: top;
  text-align: left;
}

.emk-table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Programm-Tabelle: Datum/Zeit schmal halten */
.emk-program-table td:nth-child(1),
.emk-program-table td:nth-child(2) {
  white-space: nowrap;
}

/* Zebra-Streifen + Hover */
.emk-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.emk-table tr:hover {
  background-color: #eef5ff;
}

/* Bilder EMK */
.emk-image-main,
.emk-image-map {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  display: block;
  border-radius: 6px;
}

/* Button Anmeldung */
.emk-register-btn {
  display: inline-block;
  margin-top: 10px;
}

/* Tabellen im Mobile etwas luftiger */
@media (max-width: 768px) {
  .emk-table th,
  .emk-table td {
    padding: 6px 8px;
    font-size: 0.95rem;
  }
}

/* Einheitliche Bildbreite für DE und EN, linksbündig */
.emk-image-wrapper {
  max-width: 600px;     /* feste maximale Breite */
  margin: 20px 0;       /* linksbündig (kein auto!) */
  padding: 0;
}

.emk-image-wrapper img {
  width: 100%;          /* Bild passt sich dem Wrapper an */
  height: auto;
  border-radius: 6px;
  display: block;
}

