/* Kleine A11y-Verbesserungen */
:focus { outline: 2px solid; outline-offset: 2px; }
pre { white-space: pre-wrap; }
:focus-visible { outline: 3px solid #084298; outline-offset: 2px; }

/* Links */
a, .link-primary { color: #084298; }
/* Gedämpfter Text */
.text-muted { color: #495057 !important; }
/* Statusfarben */
.text-danger { color: #842029 !important; }
.text-success { color: #0F5132 !important; }

a.btn-link {
    color: #e6191e;

}


:root {
  --bs-font-sans-serif: "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", GillSans, "Gill Sans", Helvetica, Arial, FreeSans, sans-serif;
  --bs-body-font-size: 14px;
  --bs-primary: #e6191e;
  --bs-pink: #e6191e;
  --bs-red: #e6191e;
  --bs-danger: #e6191e;
  --bs-success: #3A5C2B;
}

.btn-primary {
  --bs-btn-bg: #e6191e;
  --bs-btn-border-color: #e6191e;

  --bs-btn-hover-bg: #c91519;
  --bs-btn-hover-border-color: #b31317;

  --bs-btn-active-bg: #a21214;
  --bs-btn-active-border-color: #8f1012;

  --bs-btn-disabled-bg: #e6191e;
  --bs-btn-disabled-border-color: #e6191e;
}

.img-fluid {
    width: 100%;
}
@media (max-width: 991px) {
    .img-fluid {
        width: auto;
        max-width: 100%;
    }
    .logo {
        max-width: 200px;
    }
}



footer {
    background-color: #dee3e6;
    margin-top: 4rem;
}

footer .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
footer li {
    padding: 0;
    margin: 0;
}
footer li:not(:last-child) {
    border-right: 2px solid #3A5C2B;
}
footer li a {
    display: inline-block;
    padding: 3px 20px;
}
footer li:first-child a {
    padding-left: 0;
}
footer, footer a {
    color: #3A5C2B;
    font-weight: bold;
    font-size: 14px;
}