.fov-visual {
  background: #000;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border);
}

.fov-visual canvas {
  width: 100%;
  height: 100%;
}

.fov-visual-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.fov-label {
  font-size: 13px;
  color: var(--text3);
  text-align: center;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
}

.results-table tr {
  border-bottom: 1px solid var(--border);
}

.results-table tr:last-child {
  border-bottom: none;
}

.results-table td {
  padding: 12px 0;
  font-size: 14px;
}

.results-table td:first-child {
  color: var(--text3);
  width: 55%;
}

.results-table td:last-child {
  color: var(--accent);
  font-weight: 600;
  text-align: right;
}

.preset-scopes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preset-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text2);
  font-size: 12px;
  padding: 8px 12px;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
}

.preset-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}
