body {
  font-family: Arial, sans-serif;
  background-color: #fdf6f9;
  margin: 0;
  padding: 0;
}

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

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

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

main {
  padding: 20px;
  text-align: center;
}

.boton {
  display: inline-block;
  padding: 10px 20px;
  background-color: #a05f8c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

footer {
  background-color: #c48fb3;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.panel {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.consultorio {
  border: 2px solid #a05f8c;
  padding: 15px;
  width: 45%;
  background-color: #fdf6f9;
  border-radius: 10px;
}

.consultorio h3 {
  margin-top: 0;
}

.botones {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

button {
  padding: 8px 12px;
  background-color: #c48fb3;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
