@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');



.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1c1e21;
    text-decoration: none;
}

.navigation-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

body {
    font-family: 'Gill Sans', sans-serif;
    background-color: #e0fbc5;
    color: #333;
    margin: 0;
    padding: 20px;
    padding-top: 80px; /* Add padding to prevent content from being hidden by the fixed top bar */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.topnav {
    margin-bottom: 0;
    width: 100%;
    max-width: 500px;
    position: relative;
}

#ride-search {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 6px;
    box-sizing: border-box;
}

#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
    z-index: 10;
}

#search-results a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

#search-results a:hover {
    background-color: #f5f5f5;
}


.middlenav button {
    background-color: #6694ff;
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    
}

.middlenav button:hover {
    background-color: #365899;
}
