.chart-container {
  position: relative;
  max-width: 100% !important;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.title-dropdown-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 10px;
}

.chart-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.interval-container {
  position: absolute;
  top: 16px !important;
  right: 10px;
  display: flex;
  align-items: center;
}

.interval-label {
  font-weight: bold;
  margin-right: 5px;
}

.interval-select {
  margin-left: 5px;
  border: 1px solid #EEEEEE;
  border-radius: 30px;
  box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 2px 10px;
}