body {
    background-color: #e5e5e5; /* Leichter Hintergrund */
    color: #333333; /* Textfarbe */
    font-family: 'Arial', sans-serif;
}
.container {
    margin-top: 30px;
}
h1, h1.display-2 {
    color: #2f4f4f; /* Dunkelgrün */
    font-weight: bold;
}

h2, h3 {
    color: #556b2f; /* Olivegrün */
}

h4, h5 {
    color: #303f15; /* Olivegrün */
}

.breadcrumb {
    background-color: #f8f9fa; /* Helles Hintergrundfarbe */
    border-radius: 5px;
}
.breadcrumb-item h3 {
    margin: 0;
}
.breadcrumb-item a {
    color: #8b4513; /* Braun */
    text-decoration: none;
}
.breadcrumb-item a:hover {
    text-decoration: underline;
}
.card {
    border: 1px solid #8b4513; /* Braun */
    border-radius: 10px;
}
.card-body {
    background-color: #fafafa; /* Leichter Hintergrund */
    padding: 20px;
}
.text-muted {
    color: #6c757d;
}
hr {
    border-top: 2px solid #2f4f4f; /* Dunkelgrün */
}