/* Grundstil */
body {
    font-family: "Open Sans", Calibri, Arial, sans-serif;
    margin: 20px;
    background-color: #ffffff;
    color: #002673; /* Hausfarbe Blau */
    line-height: 1.6;
}
/* Tabellen */
table, th, td {
    border: 1px solid;
    border-collapse: collapse;
    border-color: #002673;
    width: 100%;
    vertical-align: top;
}
th
{
    text-align: left;
   vertical-align: top;
}

/* Überschriften */
h1, h2, h3 {
    font-family: "Calibri", sans-serif;
    color: #002673; /* Hausfarbe Blau */
}
h1 {
    font-family: "Calibri", sans-serif;
    color: #002673; /* Hausfarbe Blau */
    text-decoration: underline;
}

/* Accordion-Stil */
.accordion{
    /*#a2aba6; /* Hausfarbe Grau */
    /*#ffcc00; /* Hausfarbe Gelb */
    /*#002673; /* Hausfarbe Blau */
    background-color: #a2aba6; /* Hausfarbe Grau */
    color: #ffffff; /* Weiß für Kontrast */
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: background-color 0.2s ease;
    margin-bottom: 5px;
    font-weight: bold;
}

.accordion:hover, .accordion.active {
    background-color: #ffcc00; /* Hausfarbe Gelb */
    color: #002673; /* Hausfarbe Blau */
}

.panel {
    padding: 15px;
    display: none;
    overflow: hidden;
    background-color: #ffffff; /* Weiß für Kontrast */
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

/* Linkliste */
.link-list ul {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 5px;
}

.link-list a {
    color: #002673; /* Hausfarbe Blau */
    text-decoration: none;
    font-weight: bold;
}

.link-list a:hover {
    text-decoration: underline;
    color: #ffcc00; /* Gelb beim Hover */
}

/* Logo-Stil */
.logo {
    text-align: left;
    margin-bottom: 20px;
}

.logo img {
    max-width: 200px;
    height: auto;
}
