/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
}

.logo {
    /*font-size: 24px; */
    color: white;
    max-width: 70px;
    text-align: center;
}

/* Ensure logo does not take up too much space */
.logo img {
    max-width: 100%;
    height: auto;
    border-radius: 7px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.nav-links a:hover {
    text-decoration: underline;
    color: antiquewhite;
}

.nav-right {
    display: flex;
    align-items: center;
}

.search-form {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.search-form input {
    padding: 5px;
    border: none;
    border-radius: 5px;
}

.search-form button {
    background-color: #555;
    border: none;
    padding: 5px;
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}

.search-form button i {
    font-size: 16px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .search-form {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .search-form input {
        width: calc(100% - 60px);
        max-width: 300px;
    }

    .search-form button {
        width: 50px;
    }
}
