.modal-ruta {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-ruta.mostrar {
  display: flex;
}

.modal-ruta-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
}

.estacion-item {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.estacion-item input {
  width: 100%;
  margin-bottom: 6px;
}

.btn-add {
  background: #9146FF;
  color: white;
  width: 100%;
  margin-top: 10px;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.btn-save {
  background: #28a745;
  color: white;
}

.btn-cancel {
  background: #dc3545;
  color: white;
}


@media (max-width: 600px) {
  #btn-crear-ruta,
  #btn-editar-ruta {
    display: none;
  }
}