* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #f5f5f5;
  color: #333;
}

header {
  background: #1e3a8a;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
}

h1 {
  font-size: 1.45rem;
}

.menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.9rem;
  cursor: pointer;
  padding: 5px 10px;
}

/* Menú Hamburguesa */
.menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 150;
  padding: 10px;
}

.menu.show {
  display: block;
}

.menu-item {
  display: block;
  padding: 15px 20px;
  color: #1e3a8a;
  text-decoration: none;
  font-size: 1.1rem;
}

.menu-item:hover {
  background: #f1f5f9;
}

/* Info Bar y resto igual que antes */
.info-bar {
  background: white;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.selector-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.selector-row:last-child { border-bottom: none; }

.label { font-weight: 500; min-width: 95px; }

.value {
  flex: 1;
  font-weight: bold;
  color: #1e40af;
}

.btn-cambiar {
  background: #64748b;
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
}

.fecha-row {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #555;
}

/* Modales */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 300;
  align-items: center;
  justify-content: center;
}

.modal.show { display: flex; }

.modal-content {
  background: white;
  width: 90%;
  max-width: 380px;
  border-radius: 12px;
  padding: 20px;
}

.modal-content h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.modal-option {
  width: 100%;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  background: #f1f5f9;
  color: #1e3a8a;
  font-size: 1.05rem;
  cursor: pointer;
}

.btn-cancelar {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
}

/* Tabla */
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th, td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th { background: #f8fafc; }

.distancia { font-weight: bold; color: #1e40af; }
.precio { font-size: 1.15rem; font-weight: bold; color: #166534; }