body {
    font-family: Arial, Verdana, sans-serif; 
    background-color: #f4f4f4; 
    color: #333; 
    margin: 0;
    padding: 10px;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

.logo-container {
    display: flex;
    justify-content: left; /* Standard: linksbündig */
    align-items: center;
    flex: 1;
}

.logo-container.center {
    justify-content: center; /* Zentriert, wenn nötig */
}

.logo {
    height: 65px;
}

.menu-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 20px;
    padding: 0;
}

.menu li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 16px;
}

.menu li a:hover {
    color: #333;
}


.container {
    position: relative;
    max-width: 98%;
    height: 92vh;
    border-radius: 5px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.site-content {
    position: relative;
    max-width: 98%;
    height: 75vh;
    border-radius: 5px;
    margin: 0 auto;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeOut 1s forwards reverse, zoomIn 1s forwards;
}

h1, h2, h3, h4 {
    font-weight: bold;
    color: #2c3e50;
}

h1 {
    font-size: 16px;
}

h2 {
    font-size: 15px;
}

h3 {
    font-size: 14px;
}

h4 {
    font-size: 13px;
}

p {
    font-weight: normal; 
}

#bottom-right-text {
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: darkgray;
    font-size: 14px;
    z-index: 1000;
    opacity: 1;
    animation: fadeOut 10s ease-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1; 
    }
    100% {
        opacity: 0; 
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

.logout-button {
    padding: 10px;
    font-weight: bold;
    color: #555;
    background-color: #f4f4f4;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px; /* Abstand zum Bild */
    align-self: center; /* Vertikale Ausrichtung */
}

.logout-button:hover {
    background-color: #dcdcdc;
}
