html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
}

#JeelizVTOWidget {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.JeelizVTOWidgetCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; /* Ensure it's above the canvas */
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(5px);
}

.headerTitle {
  font-size: 1.2rem;
  font-weight: bold;
}

.controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.select-container {
  display: flex;
  gap: 5px;
}

#status {
  font-size: 0.9rem;
  color: #ccc;
  margin-right: 10px;
}

button {
  padding: 5px 10px;
  border-radius: 4px;
  border: none;
  background: #0070f3;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #0051a2;
}

select {
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
