/* Basic styling for the menu */
.menu-container {
    font-family: sans-serif;
}

.menu-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
}

.menu-nav a {
    text-decoration: none;
    color: #007bff;
    padding: 5px 10px;
}

.menu-nav a:hover {
    color: #0056b3;
    background-color: #e9ecef;
    border-radius: 5px;
}

.menu-logo img {
    /* width: 100px; */
    width: 520px;
}

.menu-links {
    display: flex;
    flex-direction: row;
}

.menu-search {
    display: flex;
    align-items: center;
}

.menu-search input[type="text"] {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 5px;
    margin-right: 5px;
}

/* Responsive styling for mobile */
@media (max-width: 768px) {
    .menu-nav {
        flex-direction: column;
    }

    .menu-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .menu-links a {
        display: block;
        width: 100%;
        box-sizing: border-box;
        margin: 5px 0;
    }

    .menu-search {
        margin-top: 10px;
    }
}
