html, body {
    padding: 0;
    margin: 0;
    min-height: 100%;
    overflow-x: hidden; /* Verhindert horizontale Scrollbalken */
    color: #006699;
    font-size: 16px;
}

.bodyWrapper {
    min-height: 100vh; /* Volle Bildschirmhöhe */
    display: flex;
}

.col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.col.leftContainer, .col.rightContainer {
    flex: 1; /* Teilt den restlichen Platz */
}

.layout.col {
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto; /* Preserve original sizes */
}

.layout.col.leftContainer {
    flex: 1; /* Take remaining space */
}

.layout.col.centerContainer {
    flex: 0 0 100%; /* Standard: Nimmt 100% Breite */
    max-width: 100%; /* Standard: Keine Begrenzung */
    flex-direction: column;
    border: solid 1px rgb(222, 226, 230);
}

.centerContainer .row {
    width: 100%;
}

.headerRow {
    padding-top: 2.2rem;
    flex-shrink: 0
}

.contentRow {
    padding: 0.9rem;
    margin-top: 0.6rem;
    word-wrap: break-word;
    flex-grow: 1;
}

.contentBox {
    border-radius: 0.5rem;
    padding: 0.0rem;
    margin-top: 1.5rem;
    border: solid 1px rgb(222, 226, 230);
}

.bottomRow {
    flex-shrink: 0;
    margin-bottom: 0.9rem;
}

.bottomRow .col {
    display: flex;
    flex-direction: row; /* Oder row, je nach Kontext */
    justify-content: center;
}

.mainH1 {
    font-family: Georgia, serif;
    font-weight: bold;
    margin-bottom: 0.1rem;
    padding-left: 6.2rem;
}

.navbar-custom, .bottomRow {
    position: relative; /* Referenz für das absolut positionierte Logo */

    border-top: solid 0.3rem #FFFFFF;
    border-bottom: solid 0.3rem #FFFFFF;
    background: linear-gradient(
            to right,
            transparent,
            rgba(0, 102, 153, 0.2) 20%,
            rgba(0, 102, 153, 0.4) 30%,
            rgba(0, 102, 153, 0.4) 70%,
            rgba(0, 102, 153, 0.2) 80%,
            transparent
    );
}

.nav-link {
    font-weight: bold;
}

.bottomRow {
    color: #006699;
    font-weight: bold;
    padding: 0.3rem;
}


.navbar-custom {
    height: 60px;
}

.navbar-logo {
    position: absolute; /* Ermöglicht das Hinausragen */
    top: -30px; /* Justiere, wie weit das Logo nach oben hinausragt */
    left: 15px; /* Abstand zur linken Seite */
    height: 100px; /* Höhe des Logos */
    z-index: 2; /* Über der Navigation sichtbar */
    background-color: transparent; /* Kein Hintergrund */
}

.navbar-nav {
    padding-right: 0; /* Kein zusätzliches Padding */
}

/* Hover-Effekt für Links */
.navbar-nav .nav-link {
    transition: background-color 0.3s ease, color 0.3s ease; /* Sanfter Übergang */
    padding: 0.5rem 1rem; /* Angenehmer Klickbereich */
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 0.5rem; /* Abgerundete Ecken */
    color: #006699;
}

.startLink {
    display: none;
}

.navbar-toggler {
    background-color: #006699;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 12.5a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 0 1h-12a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 0 1h-12a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h12a.5.5 0 0 1 0 1h-12a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.navbarBlue .nav-link:hover {
    background-color: #006699;
    color: #DDDDFF;
}

.versionary {
    padding-left: 1rem;
    font-weight: normal;
    font-size: small;
    color: #5c636a;
}

.navbar-collapse {
    display: flex;
    justify-content: flex-end;
}

.navbar-collapse ul {
    display: inline-flex;
    margin-top: 1rem;
    margin-right: 1rem;
    padding: 0.3rem;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3px); /* Unschärfe-Effekt */
    -webkit-backdrop-filter: blur(3px); /* Für Safari */
    border-radius: 0.5rem; /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten */
}

.contentBox{
    padding: 1rem;
    text-align: justify;
}

.contentBox a .badge {
    text-decoration: none;
    color: #006699;
}

.contentBox a:hover .badge {
    text-decoration: none;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    background-color: #006699;
}

.contentBox a:hover .badge::before {
    content: "zu meiner "
}

.contentBox .badge{
    padding: 0.3rem 0.9rem;
    margin: 0.0rem;
    background-color: #DDEbFF;
    border: 1px solid #006699;
}

li{
    padding-bottom: 0.5rem;
}

#dsgvoPopup {
    display: none; /* Unsichtbar, bis es angezeigt wird */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund */
    z-index: 99999; /* Über alles andere legen */
}

/* Stile für den Dialog-Inhalt */
#dsgvoPopupContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

#dsgvoPopupContent button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

#dsgvoPopupContent button:hover {
    background-color: #0056b3;
}

th, td{
    border: solid 1px #123456;
    padding: 0.3rem;
}



.article {
    margin: 20px;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

p {
    margin: 10px 0;
    line-height: 1.6;
}

ul {
    margin: 10px 0 20px 20px;
    padding: 0;
    list-style-type: disc;
}

li {
    margin-bottom: 5px;
}

strong {
    font-weight: bold;
}

.link {
    color: #0056b3;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.introduction, .examples, .technology, .project, .status, .outlook {
    margin-bottom: 30px;
}
