* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #020205;
  font-family: 'Outfit', sans-serif;
  color: #f0f0f5;
  user-select: none;
}

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

#dashboard {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  pointer-events: none;
  max-width: 320px;
  width: 100%;
}

.glass-panel {
  pointer-events: auto;
  background: rgba(15, 15, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

h1 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.subtitle {
  font-size: 12px;
  font-weight: 300;
  color: rgba(240, 240, 245, 0.6);
  margin-top: -15px;
  letter-spacing: 1px;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(240, 240, 245, 0.8);
  letter-spacing: 1px;
  font-family: 'Share Tech Mono', monospace;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.3);
}

select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  outline: none;
  font-size: 12px;
  cursor: pointer;
}

select option {
  background: #0f0f1e;
  color: #fff;
}

.footer {
  font-size: 11px;
  color: rgba(240, 240, 245, 0.4);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}
