/* ===========================
   Grundfarben & Variablen
   =========================== */
:root {
    --hauptfarbe: #003366;
    --hoverfarbe: #0055aa;
    --text-hell: #ffffff;
    --hintergrund: #f4f4f4;
}

/* ===========================
   Grundlayout
   =========================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--hintergrund);
}

/* ===========================
   Header
   =========================== */
.header {
    background: var(--hauptfarbe);
    color: var(--text-hell);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===========================
   Logo
   =========================== */
.logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===========================
   Navigation
   =========================== */
.nav a {
    color: var(--text-hell);
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
}

.nav a:hover {
    color: var(--hoverfarbe);
}

/* ===========================
   Inhalt
   =========================== */
.content {
    padding: 20px;
}

/* ===========================
   Formulare
   =========================== */
input[type="text"],
input[type="password"],
input[type="email"],
select {
    width: 250px;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background: var(--hauptfarbe);
    color: var(--text-hell);
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
}

button:hover {
    background: var(--hoverfarbe);
}

/* ===========================
   Fehlermeldungen
   =========================== */
.error {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
}

/* ===========================
   Tabellen (falls genutzt)
   =========================== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th,
table td {
    padding: 10px;
    border: 1px solid #ccc;
}

table th {
    background: var(--hauptfarbe);
    color: var(--text-hell);
}
