#maul-reservas-app {
  max-width: 600px;
  margin: 0 auto;
  font-family: inherit;
}

.maul-paso h3 {
  margin-bottom: 20px;
}

.maul-back {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 14px;
  padding: 0;
  margin-bottom: 12px;
}

/* Cards (servicios y slots) */
.maul-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.maul-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.maul-card:hover {
  border-color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.maul-card-nombre {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 15px;
}

.maul-card-precio {
  color: #555;
  font-size: 14px;
}

/* Calendario */
.maul-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 600;
}

.maul-cal-nav button {
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.maul-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.maul-cal-dia-nombre {
  font-size: 12px;
  color: #888;
  padding: 6px 0;
  font-weight: 500;
}

.maul-cal-dia {
  padding: 8px 4px;
  border-radius: 6px;
  font-size: 14px;
}

.maul-cal-dia.disponible {
  background: #f0faf5;
  color: #1a7a4a;
  cursor: pointer;
  font-weight: 600;
  border: 1px solid #b8e8cf;
}

.maul-cal-dia.disponible:hover {
  background: #1a7a4a;
  color: #fff;
}

.maul-cal-dia.pasado {
  color: #ccc;
}

.maul-cal-dia.sin-slots {
  color: #aaa;
}

/* Resumen */
.maul-resumen {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.maul-resumen-item {
  margin-bottom: 6px;
  font-size: 15px;
}

/* Formulario */
.maul-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.maul-form input {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.maul-form input:focus {
  outline: none;
  border-color: #333;
}

#maul-btn-reservar {
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

#maul-btn-reservar:hover {
  background: #333;
}

#maul-btn-reservar:disabled {
  background: #999;
  cursor: not-allowed;
}

.maul-error {
  color: #d32f2f;
  font-size: 14px;
  margin: 0;
}
