body {
  font-family: Arial, sans-serif;
  background: url("../img/fondo.jpg") no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

.container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-around;
}

@media screen and (max-width: 1080px) {
  .container {
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
  }

  #vmap {
    display: none;
  }
}

.form-container {
  width: 300px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}
h1,
h2 {
  text-align: center;
  color: #ed3237;
}
select,
input,
button {
  display: block;
  width: 93%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
label {
  font-size: 12px;
}
header {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #ed3237;
  position: relative;
}
header img {
  width: 120px;
}
dialog {
  cursor: pointer;
}
button {
  background: #ed3237;
  color: white;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
}
button:disabled {
  opacity: 0.5;
  cursor: default;
}
.fecha-hora {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.fecha-hora input {
  flex: 1;
  max-width: 48%; /* Ajusta el ancho para que ambos inputs quepan en la misma línea */
}

#vmap {
  position: initial !important;
  width: 750px;
  height: 600px;
}

.jqvmap-label {
  position: absolute;
  z-index: 2;
  display: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #292929;
  color: white;
  font-family: sans-serif, Verdana;
  font-size: smaller;
  padding: 3px;
  pointer-events: none;
}
.jqvmap-pin {
  pointer-events: none;
}
.jqvmap-zoomin,
.jqvmap-zoomout {
  display: none;
  position: absolute;
  left: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #000000;
  padding: 3px;
  color: white;
  width: 15px;
  height: 15px;
  cursor: pointer;
  line-height: 10px;
  text-align: center;
}
.jqvmap-zoomin {
  top: 10px;
}
.jqvmap-zoomout {
  top: 30px;
}
.jqvmap-region {
  cursor: pointer;
}
.jqvmap-ajax_response {
  width: 100%;
  height: 500px;
}
