/* Globale Styles */
* {
    padding: 0px;
    margin: 0px;
    margin-block-start: 0;
    margin-block-end: 0;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: inherit;
}

/* Structure & Layout */
.grid {
    display: grid;
    grid-template-columns: 232px 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: ". .";
}

.sidebar {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background-color: #2a3647;
    height: 100vh;
    align-content: center;
    justify-content: space-around;
    position: sticky;
    top: 0;
    position: fixed;
    width: 232px;
}

.logo-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Navigation */
.navigation {
    display: flex;
    flex-direction: column;
}

.navigation-links {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

/* Link Styles */
.link-full-width {
    width: 100%;
    padding: 10px 0;
}

.link-full-width:hover {
    background-color: #35455b;
}

.link-container {
    display: flex;
    justify-content: center;
}

.link-text {
    color: white;
    font-size: 16px;
}

.link-wrapper {
    gap: 8px;
    display: flex;
    align-items: center;
    width: 150px;
}

/* Legal Links */
.legal-link {
    color: white;
    font-weight: 100;
    cursor: pointer;
}

.legal-Link:hover {
    color: #29abe2;
}

.legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 317px;
    justify-content: flex-end;
    margin-bottom: 20px;
}

/* Header */
nav {
    width: 100%;
    height: 96px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    z-index: 2;
}

/* Mobile Navbar */
.navbar-mobile {
    display: none;
    width: 100vw;
    height: 96px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

