body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #fff;
}

#sector-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 50px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 50px;
}

.sector-bar {
  width: 40px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.bar-inner {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.bar-label {
  margin-top: 5px;
  font-size: 12px;
  font-weight: bold;
}

#heatmap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.stock-box {
  width: 150px;
  height: 70px;
  color: white;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin: 5px;
  font-weight: bold;
}
