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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
}

.menu-bar {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 3rem;
}

.menu-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.75rem;
    max-height: 2.5rem;
    transition: all 0.2s ease-in-out;
    border-radius: 0.5rem;
}

.menu-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.menu-item a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-item a i {
    font-size: 1rem;
    color: #444;
}

.search-container {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background-color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
}

.search-controls {
    position: absolute;
    top: 1rem;
    line-height: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search-controls select {
    padding: 0.375rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background-color: #fff;
}

.search-box {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

.search-box input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
    font-size: 1rem;
    color: #333;
}

.search-box input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.search-buttons button {
    background-color: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.search-buttons button:hover {
    background-color: #0056b3;
}

.search-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .menu-list {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.5rem;
    }

    .menu-item {
        width: auto;
        flex: 1 0 20%;
        text-align: center;
    }

    .search-container {
        width: 90%;
        max-width: 400px;
        padding: 0.8rem;
    }

    .search-controls {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .search-controls select {
        flex: 1 1 calc(50% - 1rem);
    }

    .search-box {
        width: 100%;
    }
}
