* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}


:root {
--fire-red: #c60000;
--fire-red-dark: #9f0000;
--bg-light-red: #ffe5e5;
--card-black: #0f0f0f;
--text-light: #f2f2f2;
}

body {
background: var(--bg-light-red);
min-height: 100vh;
}


/* HEADER */
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 64px;
background: var(--fire-red);
display: flex;
align-items: center;
padding: 0 16px;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}


.header-content {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: white;
}


.logo {
height: 38px;
}


.title {
font-size: 1.4rem;
font-weight: 700;
letter-spacing: 0.5px;
}


/* PAGE */
.page {
padding-top: 96px;
display: flex;
justify-content: center;
}


/* CARD */
.card {
width: 90%;
max-width: 600px;
background: var(--card-black);
color: var(--text-light);
border-radius: 14px;
padding: 20px 18px 22px;
box-shadow: 0 8px 25px rgba(0,0,0,0.35);
text-align: left;
}


.card h1 {
margin-bottom: 12px;
}


.card p {
line-height: 1.5;
margin-bottom: 14px;
}


/* IMAGE */
.content-img {
width: 100%;
border-radius: 10px;
margin: 10px 0 16px;
}

/* FOOTER */
.footer {
margin-top: 24px;
padding: 16px 10px 22px;
text-align: center;
font-size: 0.85rem;
color: #555;
}


.footer p {
opacity: 0.8;
}

/* BUTTON */
.btn {
width: 100%;
background: var(--fire-red);
border: none;
color: white;
padding: 12px 14px;
border-radius: 10px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
margin-bottom: 16px; /* Abstand unter dem Button */
}


.btn:hover {
background: var(--fire-red-dark);
transform: translateY(-1px);
box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}


.btn:active {
transform: scale(0.98);
}

.btn_kapitel {
width: 100%;
background: #fff;
border: none;
color: var(--fire-red);
padding: 12px 14px;
border-radius: 10px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
margin-bottom: 16px;

transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn_kapitel:hover {
background: var(--fire-red);
color: #fff;
transform: translateY(-1px);
box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

.btn_kapitel:active {
transform: scale(0.98);
}




table {
  width: 100%;
  border-collapse: collapse;
  background: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

th, td {
  padding: 12px 16px;
  color: white;
  text-align: left;
  border: none;
}

thead {
  background: linear-gradient(135deg, #b30000, #7a0000);
}

th {
  font-weight: 600;
  letter-spacing: 0.4px;
}

tbody tr {
  transition: background 0.2s ease, transform 0.1s ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.06);
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

tbody tr:active {
  transform: scale(0.995);
}

ul, ol {
    color: rgb(255, 255, 255);       /* Textfarbe */
    padding-left: 20px; /* Abstand vom Rand */
    margin: 10px 0;     /* Abstand oben und unten */ 
}

form {
max-width: 700px;
margin: 40px auto;
background: var(--fire-red);
padding: 28px 32px;
border-radius: 14px;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

label {
display: flex;
align-items: center;
gap: 10px;
margin: 6px 0;
cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
accent-color: var(--fire-red); /* Feuerwehr-Rot */
width: 18px;
height: 18px;
cursor: pointer;
}