body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #ff6b6b;
    color: white;
    padding: 20px 40px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-weight: 700;
}

#map {
    height: 400px;
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

ul.restaurant-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 20px auto;
}

ul.restaurant-list li {
    background-color: white;
    margin: 10px 0;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

ul.restaurant-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Headings */
h2 {
    text-align: center;
    margin-top: 30px;
    font-weight: 500;
}
.center-link {
    display: block;
    text-align: center;
}
@media (max-width: 600px) {
    #map {
        width: 95%;
    }

    header {
        padding: 15px 20px;
    }

    ul.restaurant-list li {
        padding: 12px 15px;
    }
}

form {
    background-color: #ffffff;
    max-width: 500px;
    margin: 30px auto;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

form input[type="number"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form button {
    padding: 12px;
    background-color: #ff6b6b;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: center;
    width: 50%;
}

form button:hover {
    background-color: #e95a5a;
}

a {
    display: block;
    text-align: center;
    margin: 20px auto;
    text-decoration: none;
    color: #ff6b6b;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: #e95a5a;
}

h1 {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    margin: 5px;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #e95a5a;
}
