.header .logo h1 {
  font-size: 18px;
  margin-left: 7px;
}

.navmenu li:hover>a, .navmenu .active, .navmenu .active:focus {
  border-radius: 10px;
}

#map {
  height: 400px;
  width: 100%;
}
.form-label {
  font-weight: 600;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

.zButton {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 10px;
}

.zButton:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.zLink:link {
  color:gainsboro;
}
.zLink:hover {
  color:White;
}
.zLink:visited {
  color:gainsboro;
}

.zLinkDark:link {
  color:DimGray;
}
.zLinkDark:hover {
  color:rgb(69, 69, 69);
}
.zLinkDark:visited {
  color:DimGray;
}

.zLinkCorp:link {
  color:rgb(27, 112, 146);
}
.zLinkCorp:hover {
  color:rgb(20, 149, 219);
}
.zLinkCorp:visited {
  color:rgb(27, 112, 146);
}

.zCursor {
  cursor: hand;
  cursor: pointer;
}

.zValignBottom {
  display: flex; 
  align-items: flex-end;
}

.zRM50Color {
  background-color: #348671;
  color: white; 
}

.zRM100Color {
  background-color: #67598D;
  color: white; 
}

.zRM200Color {
  background-color: #88228e;
  color: white; 
}

.vehicle-card {
  border: 1px solid transparent;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  width: 100px;
  transition: all 0.2s ease-in-out;
}
.vehicle-card img {
  max-width: 60px;
  height: auto;
}
.vehicle-card.selected {
  border-color:rgb(177, 211, 230);
  background-color: #e7f1ff;
}

.zPhotoFrame { 
  border: 8px solid white;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  padding: 3px;
  background-color: white;
}


/* Container for meteors */
.meteor-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Individual meteor styles */
.meteor {
  position: absolute;
  width: 200px;
  height: 5px;
  background: linear-gradient(45deg, transparent, rgba(0, 150, 255, 0.8), transparent);
  border-radius: 50%;
  transform-origin: left;
  animation: streak 4s infinite ease-in-out; /* Slower speed (4s instead of 2s) */
  opacity: 0; /* Initially invisible */
}

/* Keyframes for meteor streak animation */
@keyframes streak {
  0% {
    transform: rotate(45deg) translateX(-200%) scaleX(1); /* Start off-screen */
    opacity: 0; /* Fully transparent */
  }
  10% {
    opacity: 1; /* Fade in */
  }
  100% {
    transform: rotate(45deg) translateX(200%) scaleX(3); /* End off-screen */
    opacity: 0; /* Fully transparent */
  }
}

/* Random positions for meteors */
.meteor:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.meteor:nth-child(2) {
  top: 30%;
  left: 50%;
  animation-delay: 0.5s;
  width: 150px;
}

.meteor:nth-child(3) {
  top: 60%;
  left: 10%;
  animation-delay: 1s;
  width: 250px;
}

.meteor:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 1.5s;
  width: 180px;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.9), transparent); /* Brighter yellow meteor */
}

.meteor:nth-child(5) {
  top: 40%;
  left: 80%;
  animation-delay: 2s;
  width: 220px;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.9), transparent); /* Second brighter yellow meteor */
}

.select2-container .select2-selection--single {
   height: 38px;
} 

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
  padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px;
}

.zRadioGroup {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}