* {
    font-family: Karla;
    font-size: 1.5vh;
    color: white;
}

:root {
    background-color: #23272e;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://legal.pizza.systems/assets/background.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(10px);
}

.visible-container {
    border-radius: 2vh;
    width: 50%;
    max-width: 500px;
    color: white;
    overflow: none;
    background: rgba(255, 255, 255, 0.2); /* Transparent White */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.container {
    margin: 2vh;
}

.content-pane {
    margin: 10%;
    margin-top: 12vh;
}

.header {
    font-weight: bold;
    color: #80838a;
}

.bullet-header {
    font-size: 1.75vh;
    margin: 2vh;
}

.sub-header {
    margin: 2vh;
}

.text-box {
    width: 85%;
    height: 3vh;
    margin: 1vh;
    margin-left: 2vh;
    padding: 0.80vh;
    border: 1px solid #343947;
    background-color: #23272e;
    border-radius: 1vh;
    color: white;
}
.text-box:focus {
    outline: none;
}

.divider {
    width: 90%;
    margin: 1vw;
    border-bottom: 1px solid;
    color: #343947;
}

.centered-content {
    display: flex;
    align-items: center;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.full-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4vh;
    margin: 0.5vh;
    background-color: #245cd8;
    border: none;
    border-radius: 1vh;
    color: white;
    font-size: 1.5vh;
    cursor: pointer;
}

.button-icon {
    margin-right: 1vh;
    min-width: 2vh;
    height: 2vh;
}

.navbar {
    display: flex;
    justify-content: space-between; /* Space between logo and menu icon */
    align-items: center;
    background-color: #202424;
    padding: 1.70vh 10%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid #343947;
    box-sizing: border-box;
}

.logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    /* Ensure the logo has some spacing and alignment */
    margin-right: auto; /* Pushes the logo to the left */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    flex-grow: 1; /* Allows the nav-links to take up space */
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
}

.nav-link {
    font-size: 1.75vh;
    border-radius: 0.75vh;
    padding: 0.5vw;
}

.nav-link:hover {
    background-color: #374151;
}

#current {
    background-color: #374151;
}

.menu-icon {
    display: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 80%;
        background-color: #333;
        position: absolute;
        top: 50px;
        right: 0; /* Aligns the dropdown menu to the right */
        padding: 10px 0;
        box-sizing: border-box;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    /* Adjust the navbar styling for collapsed state */
    .navbar {
        justify-content: flex-end; /* Align items to the right when collapsed */
    }

    .logo {
        /* Optionally, hide or adjust the logo */
        display: block; /* Ensure logo is visible or handled appropriately */
        margin-right: auto; /* Ensure the logo is still positioned correctly */
    }
}

@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqaHUlKd7c.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqaE0lK.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
