
/* Layout Basics */
body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #1868b2;
  color: white;
  padding: 1rem;
}

header img.logo {
  width: 35px;
  height: 35px;
float: right;
}

nav {
  background-color: #f8f9fa;
}

main {
  padding: 2rem;
}

main img{
	margin: 1rem 0 1.5rem 0;
	width: 100%;
  	height: auto;		
}

li.nav-item-sub {
    list-style-type: none; /* Entfernt die Standard-Listenpunkte */
    list-style: none; /* Eine zusätzliche Sicherung, falls 'type' nicht greift */
}

/* Optional: Entfernt auch jeglichen Standard-Padding oder Margin, der von Browsern oder Bootstrap kommen könnte */
ul .nav-item-sub,
li.nav-item-sub {
    padding-left: 0;
    margin-left: 0;
}

footer {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  margin-top: 3rem;
  padding: 1rem 0;
  border-top: 1px solid #ddd;
}

/* Code block styling */
pre code {
  display: block;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  padding: 1rem;
  white-space: pre-wrap;
  word-break: break-word;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.95rem;
  overflow-x: auto;
}

.position-relative .btn-copy {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

/* Medium Devices (Tablets Hochformat, kleine Laptops: >= 576px und <= 991.98px) */
@media (min-width: 576px) and (max-width: 991.98px) {
    main {
        width: 90%; /* Beispiel: Container etwas breiter */
    }

  main img{
	margin: 1rem 0 1.5rem 0;
	width: 50%;
  	height: auto;		
}
	header img.logo {
  width: 75px;
  height: 75px;
margin-left: 75px;
		margin-top: 10px;
		margin-bottom: 10px;
}
}

/* --- */

/* Large Devices (Desktops, größere Laptops: >= 992px) */
@media (min-width: 992px) {
    body {
        font-size: 18px; /* Beispiel: Schriftgröße für große Bildschirme */
    }

    main {
        max-width: 1200px; /* Beispiel: Maximale Breite für sehr große Bildschirme */
        padding: 25px;
    }

    main img{
	margin: 1rem 0 1.5rem 0;
	width: 25%;
  	height: auto;		
}
	header img.logo {
  width: 75px;
  height: 75px;
margin-left: 75px;
margin-top: 10px;
		margin-bottom: 10px;
}
}
