body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #007bff;
  color: white;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: #007bff;
  color: white;
  padding: 50px;
}

#agendamento {
  background: #f8f9fa;
  padding: 40px;
}

form input, select, button {
  width: 90%;
  max-width: 400px;
  padding: 10px;
  margin: 10px auto;
  display: block;
}

button {
  background: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}

#agendamentos {
  text-align: center;
  padding: 20px;
}

button {
  padding: 10px 15px;
  background: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
}

table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

th {
  background: #007bff;
  color: white;
}

td {
  background: #f9f9f9;
}
