.venue-map {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #d3dfe4;
}
model-viewer {
    width: 100%;
    height: 80vh;
    max-width: 100vw;
    max-height: 100vh;
}
.controls {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
.control_btn {
    padding: 5px 7px;
    font-size: 14px;
    cursor: pointer;
    padding: 10px 16px; 
    background-color: #C8CE2A; 
    color: white; 
    border: none; 
    border-radius: 6px;
    cursor:pointer;
}

/* Ajustes solo para pantallas móviles */
@media (max-width: 768px) {
.venue-map {
  height: 60vh !important;  /* reduce la altura total */
}

model-viewer {
  height: 50vh !important;  /* compacta el modelo */
}

.controls {
  margin-top: 5px;          /* menos espacio sobre botones */
  gap: 5px;                 /* botones más juntos */
}

.control_btn {
  padding: 6px 10px;        /* botones más pequeños */
  font-size: 12px;
}
}