p.caption {
  color: #777;
  margin-top: 10px;
}
p code {
  white-space: inherit;
}
pre {
  word-break: normal;
  word-wrap: normal;
}
pre code {
  white-space: inherit;
}

/* colors */
:root {
  --dark-uni-color:#153268;
  --light-uni-color: #50a5d2;
  --better-uni-color: #b5bfd3;
  --uni-chamois-color:#f2f0e8;
  --uni-darkergray: #3b3b3a;
  --uni-darkgray: #575656;
  --uni-gray: #878786;
  --uni-lightgray: #d9dada;
  --uni-lightergray: #ececed;
}

/* header */
.container {
  padding: 0 !important;
  margin: 0 !important;
  border: 1px solid var(--uni-darkergray);
  display: flex;
  background-color: var(--dark-uni-color);
  width: 100% !important;   /* Make it full width */
  max-width: 100% !important;  /* Override Bootstrap’s max-width */
  margin-right: 0 !important;  /* Remove right margin */
  overflow: hidden;
  border-radius: 4px;
  text-align: right;
  background-image: url(www/siegel.svg); 
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 280px 280px;
}

/* header text */
.item-1 {
  flex: 10;
  color: #ffffff;
  align-self: flex-end;
  padding-right: 20px;
  padding-bottom: 3px;
}

header .container .item-1 h3 {
  font-family: sans-serif;
  font-size: 24px !important;
  font-weight: 400 !important;
}


/* footer */
.containerlow {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 15px 0;
  padding-top: 10px;
  padding-left: 1em !important;
  background-color: #878786;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  /* position: relative; */
  margin-bottom: -100px;
}


/* let Header and footer run from left to right */
.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.book {
  min-height: 100vh; /* Make sure the content takes up the full height of the viewport */
  display: flex;
  flex-direction: column;
}

.book-body {
  flex-grow: 1; /* This ensures the content area grows and pushes the footer down */
}

.custom-footer {
  background-color: #002147; /* Change this to your preferred color */
  color: white;
  padding: 10px;
  text-align: center;
  position: relative;
  width: 100%;
  bottom: 0;
}

.custom-footer p {
  margin: 0;
}

/* link row */
.linkcontainer{
    display: flex;
    justify-content: flex-end;
    border: none;
    font-size: 15px;
    margin-top: 2mm;
    margin-left: 0mm;
    margin-right: 5mm;
    margin-bottom: 0mm;
}


/* Link Buttons */
.btn {
    color: var(--dark-uni-color) !important;
    background-color: #ffffff;
    border: 2px solid  #ffffff;
    outline: none
    border-radius: 5px;
    font-size: 15px;
    padding: 2px 5px;
    cursor: pointer;
}

.btn:active {
    border: 2px solid  #000000; !important /* Keep the same border */
    outline: none;
    box-shadow: none;
}

.btn:focus {
    outline: none; /* Remove the default outline */
    box-shadow: none;
}
