/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0; /* Remove default body margin */
}

.navbar {
    display: flex;
    align-items: center;
    background-color: hsl(0, 0%, 25%);
    padding: 10px 20px; /* Adjust padding as needed */
}

.logo-link {
    margin-right: auto; /* Push logo to the left */
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Center items */
    flex: 1; /* Allow the ul to take up remaining space */
}

.navbar li {
    margin-left: 10px; /* Adjust spacing between navigation items */
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px;
    text-align: center; /* Center text within navigation items */
    display: block;
}

.navbar a:hover {
    background-color: hsl(0, 0%, 10%);
}

.search-form {
    display: flex;
    justify-content: center; /* Center the search form */
    flex: 1; /* Take up the middle space */
}

/* Search bar styling */
.search {
    display: flex;
    align-items: center;
    padding: 10px; /* Adjust padding as needed */
}

.search-icon {
    color: gray; /* Adjust color as needed */
    font-size: 20px;
    margin-right: 10px;
}

.search-input {
    padding: 8px; /* Adjust padding as needed */
    margin-left: 5px;
    width: 200px; /* Adjust width as needed */
    border: 1px solid #ccc; /* Adjust border styles as needed */
    border-radius: 4px; /* Adjust border radius as needed */
    outline: none;
}

/* Highlighting effect */
.highlight {
    background-color: yellow; /* Adjust highlight color as needed */
}
.navbar :last-child {
    margin-left: auto; /* Push search bar to the right */
}