*{
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    font-family: "inter", sans-serif;
    padding-top: 89px; 
    padding-left: 232px; 
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 232px; 
    right: 0;
    height: 96px;
}

.header h1 {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    padding-left: 116px;
}

.header-right {
    display: flex;
    align-items: center;
}

.helpImageHeader{
    padding-right: 12px;
}

.helpImageHeader:hover{
    filter: drop-shadow(0px 0px 1px #2A3647);
    transition: all 0.3s ease;
}

.helpImage{
    cursor: pointer;
}

.user-profile {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.profile-picture {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 3px solid #2A3647;
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #29ABE2;
    text-transform: uppercase;
}

.profile-picture:hover{
    background-color: #0C2E621F;
    transition: all 0.3s ease;
}

.user-name {
    font-size: 16px;
    margin-left: 8px;
}

/* Dropdown Menu*/
.dropdown-menu {
    display: none;
    position: absolute;
    width: 150px;
    height: 204px;
    padding: 10px;
    background-color: #2A3647;
    border-radius: 20px 0px 20px 20px;
    box-shadow: 0px 0px 4px 0px #0000001A;
    top: 97px; 
    right: 25px;
    z-index: 1000;
}

.dropdown-menu button {
    display: block;
    color: #CDCDCD;
    background-color: #2A3647;
    height: 46px;
    width: 130px;
    padding: 8px 12px 8px 12px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    gap: 8px;
    border-style: none;
}

.dropdown-menu button:hover {
    background-color: #1f2a3a;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.desktopSideMenu {
    background-color: #2A3647;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 232px;
    z-index: 1;
}

.desktopImageContainer {
    padding-top: 64px;
    padding-left: 66px;
    padding-right: 66px;
}

.desktopImage {
    width: 100px;
    height: 122px;
}

.navLinksContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 114px;
    gap: 15px;
}

.desktopLinkAndImage {
    display: flex;
    align-items: center;
    padding-left: 54px;
    height: 46px;
}

.desktopLinkAndImage:hover {
    cursor: pointer;
    background-color: #2A3D59;
    transition: all 0.3s ease;
}

.desktopLinkAndImage img {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}

.singleNavLink {
    color: #CDCDCD;
    text-decoration: none;
    font-size: 16px;
}

.desktopLinkAndImage.active {
    background-color: #091931;
}

.dataProtectionContainer {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-bottom: 64px;
    padding-left: 54px;
    gap: 15px;
}

.dataProtectionPolicy,
.dataProtectionNotice {
    font-weight: 400;
    text-decoration: none;
    color: #A8A8A8;
    font-size: 16px;
}

.dataProtectionPolicy:hover,
.dataProtectionNotice:hover {
    cursor: pointer;
    color: #29ABE2;
    font-weight: bolder;
    transition: all 0.3s ease;
}

/* Stil für das aktive Menüelement */
.desktopLinkAndImage.active {
    background-color: #091931; /* Ersetzen Sie dies durch Ihre gewünschte Hintergrundfarbe */
}

.desktopLinkAndImage.active img, .singleNavLink .mobile-bar.active img {
    filter: brightness(0) invert(1); /* Beispielhafte Farbänderung für aktive Icons */
}

.desktopLinkAndImage.active p {
    color: #ecf0f1; /* Beispielhafte Textfarbe für aktive Links */
}

/* ////////////////////////Mobile-Screen///////////////////////////////////// */

/* responsive.css */

.mobile-nav-bar {
    display: none;
}

.mobile-join-logo {
    display: none;
    height: 45px;
    margin-left: 40px;
}

/* Mobile Ansicht ab 1020px Breite */
@media (max-width: 1020px) {
    .desktopSideMenu {
        display: none;
    }

    .mobile-nav-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #2A3647; /* Beispielhintergrundfarbe */
        padding: 10px 0;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        height: 87px;
    }

    .mobile-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #ecf0f1; /* Beispieltextfarbe */
        width: 105px;
        height: 87px;
        border-radius: 12px;
    }

    .mobile-bar:hover {
        cursor: pointer;
        background-color: #2A3D59;
        transition: all 0.3s ease;
    }

    .mobile-bar img {
        margin-bottom: 5px;
    }

    .mobile-singleNavLink {
        margin: 0;
    }

    /* Styling für aktive Navigation in Desktop und Mobile */
    .desktopLinkAndImage.active, .mobile-nav-bar .mobile-bar.active {
        background-color: #091931; /* Beispielaktive Hintergrundfarbe */
        border-radius: 12px;
    }

    .desktopLinkAndImage.active img, .mobile-nav-bar .mobile-bar.active img {
        filter: brightness(0) invert(1); /* Beispielhafte Farbänderung für aktive Icons */
    }

    .desktopLinkAndImage.active p, .mobile-nav-bar .mobile-bar.active p {
        color: #ecf0f1; /* Beispielhafte Textfarbe für aktive Links */
    }

    .header {
        left: unset;
        right: unset;
        width: 100%;
    }

    .mobile-join-logo {
        display: flex;
        left: 20px;
        top: 28px;
    }

    .header h1 {
        display: none;
    }

    .helpImage {
        display: none;
    }

    .dropdown-menu {
        right: 10px;
    }
}
