#aframe-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  max-width: 1000px;
  margin-left:16px;
  margin-right:16px;
  gap: 16px;
}

/* 비율 유지용 래퍼 */
.iframe-wrapper {
  position: relative;
  width: 70%;               
  padding-top: 50%;
  border-radius: 8px;
  overflow: hidden;
  background: black;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.controls-legend {
  background: rgba(0, 0, 0, 0.03);
  display: inline-block;
  color: black;
  padding: 12px 12px;
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 13px;
  line-height: 1.1;
  max-width: 180px;
}

