body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    flex-direction: column;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    box-sizing: border-box;
}

header {
    margin-bottom: 20px;
}

.logo {
    max-width: 50%;
    height: auto;
}

h1 {
    font-size: 2em;
    color: #333;
    margin: 10px 0;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="range"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.range-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.range-container input[type="range"] {
    width: 50%;
    margin: 0 10px;
}

.range-container span {
    margin-left: 10px;
    font-weight: bold;
}

.price-levels {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.price-levels label {
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

button:hover {
    background-color: #218838;
}

#results {
    margin-top: 20px;
}

.restaurant-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.photo {
    margin-bottom: 20px;
}

.photo img {
    max-width: 100%;
    border-radius: 8px;
}

.details {
    text-align: center;
    width: 100%;
}

/* Media Queries for larger screens */
@media (min-width: 600px) {
    .restaurant-info {
        flex-direction: row;
        align-items: flex-start;
    }

    .photo {
        margin-right: 20px;
        margin-bottom: 0;
    }

    .details {
        text-align: left;
    }
}

#advancedOptions {
    display: none;
}
