/* Navbar */
.navbar {
    max-width: 100vw;
    display: flex;
    align-items: center; /* Vertically center items */
    justify-content: space-between; /* Space items evenly with the logo on one side and placeholders on the other */
    position: fixed; /* Use fixed for a sticky effect */
    top: 0;
    left: 0;
    right: 0;
    background: white;
    width: 100vw;
    height: 10vh;
    padding: 0 2vw; /* Add some padding for better spacing */
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow */
}

.navbar-logo-container {
    display: flex;
    align-items: center; /* Center logo vertically */
}

.navbar-logo {
    height: 8vh;
    margin-left: 2vw; /* Adjust margin as needed */
}

.navbar-placeholder1 {
    display: flex;
    align-items: center;
    padding-right: 10vw; /* Shift the placeholder 10% away from the right */
}

.navbar-placeholder2 {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.navbar-placeholder3,
.navbar-placeholder4 {
    height: 3vh;
    padding: 0 1vh; /* Adjust padding as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
/*        flex-direction: column;*/
        align-items: flex-start;
        height: auto;
        padding: 1vh 2vw;
    }

    .navbar-logo-container,
    .navbar-placeholder1 {
        width: auto; /* Full width on smaller screens */
        justify-content: flex-start; /* Align items to the start */
    }

    .navbar-logo {
        height: 4vh;
        margin-left: 2vw; /* Adjust margin as needed */
    }

    .navbar-placeholder2 {
        width: 50%; /* Adjust width for better responsiveness */
    }

    .navbar-placeholder3,
    .navbar-placeholder4 {
        height: 2vh; /* Adjust height for smaller screens */
        padding: 1vh 0.5vh 0.5vh 0.5vh; /* Adjust padding for smaller screens */
    }


}
