/* Basic styling for the restaurant booking system */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
}

h1, h2 {
    color: #333;
    text-align: center;
}

form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    margin: 0 auto;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

a {
    color: #4CAF50;
}

/* Navigation Bar Styling */
nav {
    margin-bottom: 20px;
    text-align: center;
}

nav a {
    text-decoration: none;
    margin: 0 15px;
    color: #4CAF50;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Remove bullet points from menu list */
ul {
    list-style-type: none;
    padding: 0;
}
