.sl-tabs {
  max-width: 800px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.sl-tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 0em;
  margin-top:2em;
}

.sl-tab-btn {
  background: #222;
  color: #f48024;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 4px 4px 0 0;
}

.sl-tab-btn.active {
  background: #f48024;
  color: #fff;
}

.sl-tab-content {
  display: none;
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 0 4px 4px 4px;
}

.sl-tab-content.active {
  display: block;
}
/* Grundlayout für Speisekarten-Tabellen */
.sl-tab-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
  font-family: Arial, sans-serif;
  font-size: 16px;
  background: #111; /* dunkler Hintergrund */
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
}

/* Tabellen-Zellen */
.sl-tab-content td, 
.sl-tab-content th {
  padding: 12px 15px;
  border: 0;
}

.sl-tab-content tr:nth-child(even) {background-color: #333;}

/* Linke Spalte (Gerichte) */
.sl-tab-content td:first-child {
  text-align: left;
}

/* Rechte Spalte (Preise) */
.sl-tab-content td:last-child {
  text-align: right;
  color: #f48024; /* orange Preisfarbe */
  font-weight: bold;
}

/* Tabellen-Überschriften */
.sl-tab-content h2 {
  
  color: #f48024;
  padding: 10px 15px;
  margin: 0;
  border-radius: 4px;
  
}

/* Zusatzstoffe */
.sl-tab-content em {
font-size: 0.6em;
  color: #aaa;
  margin-top: 0.5em;
  position: relative;
  display: inline-block;
  top: -10px;
}
}

/* Legende */
.sl-tab-content h3 {
  margin-top: 1em;
  color: #f48024;
}

.sl-tab-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9em;
  color: #ccc;
  display: flex;
  flex-wrap: wrap;
}

.sl-tab-content ul li {
  padding: 1em;
  font-size:0.8em;
  background:#111;
}

/* --- Responsive Design --- */
@media(max-width: 600px) {
  .sl-tab-content table,
  .sl-tab-content tbody,
  .sl-tab-content tr,
  .sl-tab-content td {
    display: block;
    width: 100%;
     border:0
  }

  .sl-tab-content tr {
    margin-bottom: 12px;
   border:0
  }

  .sl-tab-content td {
    text-align: left !important;
    padding: 8px 10px;
    border-bottom: none;
  }

  .sl-tab-content td:last-child {
    font-weight: bold;
    color: #f48024;
    margin-top: -4px;
  }
}
