#vehiculos .seleccionar_vehiculo {
  cursor: pointer;
  padding: 10px 5px;
}
#vehiculos .seleccionar_vehiculo.activo {
  background-color: #eee;
}
#vehiculos .vehiculo-list-content {
  min-width: 0;
}
#vehiculos .vehiculo-list-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
#vehiculos .vehiculo-list-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 999px;
}
#vehiculos .vehiculo-list-dot.green {
  background: #2ebd4f;
}
#vehiculos .vehiculo-list-dot.yellow {
  background: #e3b341;
}
#vehiculos .vehiculo-list-dot.red {
  background: #d84f57;
}
#vehiculos .vehiculo-list-title {
  display: inline-block;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 600;
  color: #222;
  word-break: break-word;
}
#vehiculos .vehiculo-list-meta {
  margin-top: 4px;
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  word-break: break-word;
}
#vehiculos .vehiculo-list-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
#vehiculos h2 .editar_nombre_vehiculo {
  visibility: hidden;
}
#vehiculos h2:hover .editar_nombre_vehiculo {
  visibility: visible;
}
@media screen and (min-width: 0px) and (max-width: 720px) {
  #vehiculos .mobile-hide {
    display: none;
  }
  #vehiculos .segment {
    padding: 3px;
    margin: 0;
  }
}
#vehiculos .listado-vehiculos-scroll {
  max-height: 600px;
  overflow-y: scroll;
}
#vehiculos .vehiculos-filtros {
  margin-top: 10px;
}
#vehiculos .vehiculo-fotos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  max-height: 340px;
  overflow-y: auto;
}
#vehiculos .vehiculo-foto-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
#vehiculos .vehiculo-foto-item .button {
  margin-top: 5px;
  width: 100%;
}
#vehiculos .vehiculo-fotos .header {
  margin-bottom: 6px;
}
#vehiculos .vehiculo-fotos .toggle_fotos_antiguas {
  margin-top: 8px;
}
