body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f8;
  margin: 40px;
}

.table-container {
  margin: 100px auto 0;
  max-width: 800px;
 
  padding: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.iconGuide {
  width: 50px;
}

thead {
  background: linear-gradient(90deg, #444444, #222);
  color: #ffffff;
}

th, td {
  text-align: left;
  padding: 14px 18px;
}

th {
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

tbody tr:hover {
  background-color: #e2e6ea;
  transition: background-color 0.3s ease;
}

a {
  color: #16611b;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  th, td {
    padding: 12px;
    font-size: 14px;
  }
}

.guide-container {
  margin-top: 120px;
  max-width: 800px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.guide-container h1 {
  color: #0056b3;
  margin-bottom: 20px;
  font-size: 28px;
}

.guide-container h2 {
  color: #007bff;
  margin-top: 30px;
  font-size: 20px;
}

.guide-container ol,
.guide-container ul {
  margin-left: 20px;
}

.guide-container li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.guide-container a {
  color: #007bff;
  text-decoration: none;
}

.guide-container a:hover {
  text-decoration: underline;
}

.note {
  background-color: #e9f2ff;
  padding: 15px 20px;
  border-left: 4px solid #007bff;
  border-radius: 4px;
  margin-top: 20px;
}

.fazit {
  background-color: #d4edda;
  padding: 15px 20px;
  border-left: 4px solid #28a745;
  border-radius: 4px;
  margin-top: 20px;
}

.back-link {
  margin-top: 30px;
}

.back-link a {
  font-weight: bold;
  color: #1e6422;
}

.guide-image {
  width: 100%;
  max-width: 600px;
  margin: 20px 0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: block;
}

/* Bilder im Guide */
.guide-image {
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: block;
}


.guide-container h1 {
  color: #1d3c6a; 
}
.guide-container h2 {
  color: #1d3c6a;
}

h3 {
    margin-bottom: 0;
}

p {
    margin-top: 0;
}


.layout-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 20px;
}


.guide-container {
  flex: 1;
  min-width: 0;
}


/* Basis-Styles unverändert */
/* Sidebar-Grundgerüst */
.sidebar {
  width: 250px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  position: sticky;
  top: 20px;
  margin-top: 40px;
  font-family: "Segoe UI", sans-serif;
}

/* Überschrift */
.sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #205081;
  border-bottom: 2px solid #e0e6ed;
  padding-bottom: 0.5rem;
}

/* Hauptliste */
.sidebar > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar > ul li {
  margin-bottom: 0.8rem;
}

/* Links */
.sidebar a {
  display: flex;
  color: #205081;
  text-decoration: none;
  font-weight: 500;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  
}

.sidebar a:hover,
.sidebar a.active {
  background: #e0e6ed;
  color: #102a43;
}

/* „Mehr anzeigen“-Details */
.sidebar details {
  margin-top: 1rem;
}

.sidebar summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #205081;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  transition: background 0.2s;
}

/* Pfeil-Icon vor Summary */
.sidebar summary::before {
  content: '▸';
  display: inline-block;
  margin-right: 0.5rem;
  transform: rotate(0deg);
  transition: transform 0.2s;
}

/* bei offenem Details-Paneel Pfeil drehen */
.sidebar details[open] summary::before {
  transform: rotate(90deg);
}

.sidebar summary:hover {
  background: #e0e6ed;
}

/* Eingeklappte Liste */
.sidebar details ul {
  list-style: none;
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
}

.sidebar details ul li {
  margin-bottom: 0.6rem;
}

.navIcon {
  width: 20px;
  margin-right: 5px;
}

/* Responsive: Ausblenden unter 992px */
@media (max-width: 992px) {
  .layout-container {
    flex-direction: column;
    padding: 0;
  }
  .sidebar {
    display: none;
  }
}



pre {
  background: #f0f0f0;
  padding: 10px;
  border-radius: 5px;
  overflow-x: auto;
  font-family: monospace;
}

code {
  font-family: monospace;
  color: #d63384;
}

.two-column-images {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-column-images .guide-image {
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
}


.trustport-more-info {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #f3fbf6;
  border: 1.5px solid #6fc18b;
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(111,193,139,0.10);
  padding: 18px 26px 18px 20px;
  font-size: 1.10rem;
  color: #1c3924;
  margin: 28px auto 0 auto;
  max-width: 600px;
}
.trustport-more-info i {
  color: #6fc18b;
  font-size: 2.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.trustport-more-info b {
  color: #21724a;
  font-weight: 700;
}
@media (max-width: 600px) {
  .trustport-more-info {
    font-size: 1.01rem;
    padding: 14px 9px 14px 11px;
  }
  .trustport-more-info i {
    font-size: 1.6rem;
  }
}
