.fluoro-section {
  margin: 36px 0;
  padding: 24px;
  border: 1px solid #e6e6e6;
  background: #fcfcfc;
  clear: both;
}

.fluoro-toolbar {
  margin-bottom: 18px;
}

.fluoro-controls {
  margin-bottom: 16px;
}

.fluoro-controls select {
  max-width: 340px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
}

.fluoro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px 0;
}

.fluoro-chip {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #333;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  transition: all 0.18s ease;
}

.fluoro-chip:hover,
.fluoro-chip:focus {
  border-color: #b22222;
  color: #b22222;
  text-decoration: none;
  outline: none;
}

.fluoro-chip.active {
  background: #b22222;
  border-color: #b22222;
  color: #fff;
}

.fluoro-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.fluoro-chart-wrap {
  flex: 1 1 620px;
  min-width: 280px;
}

#spectraChart {
  width: 100%;
  height: 420px;
  display: block;
  background: #fff;
  border: 1px solid #eee;
  box-sizing: border-box;
}

.fluoro-profile {
  flex: 0 0 320px;
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  box-sizing: border-box;
}

.fluoro-profile h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.fluoro-profile p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.fluoro-note {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
  line-height: 1.5;
}

.fluoro-mini-list {
  margin: 8px 0 14px 18px;
  padding: 0;
}

.fluoro-mini-list li {
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .fluoro-profile {
    flex: 1 1 100%;
  }
}