
.dropdown ul{
  background-color: rgb(33, 37, 41);
}

.dropdown .dropdown-item{
  color: rgb(155, 157, 159);
}

* {box-sizing: border-box}



/* Style the tab */
.tab {
  float: left;
  background-color: inherit;
  /* width: 20%; */
  /* height: 300px; */
  margin-bottom: 0;
  height: 100%;
}

#header-container {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 20px;
  background-color: rgb(33, 37, 41);
}

#header-container h1 {
  color: white;
}

#stock-label-container {
  background-color: white;
}

#stock-label-container h3 {
  color: black;
  padding-left: 12px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  width: 80%;
  border-left: none;
  height: 300px;
}

/* Stock item style */
.stock-item {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* .stock-item.active, .stock-item:hover {
  background-color: #ccc;
  color: #FFF
} */

.stock-item:hover {
  background-color: #ddd;
  color: #FFF
}

.stock-item.active {
  background-color: #aaa;
  color: #FFF
}

.stock-item + .stock-item {
  border-top: 1px solid rgba(222, 226, 230, 0.5);
}

.stock-price {
  min-width: 60px
}

.stock-diff {
  min-width: 50px
}

/* Chart style */
.chart-div {
  padding: 20px
  /* background: lightblue; */
}

/* spinner */
.spinner {
  width: 100%;
}

/* chart select list */
.list-group-item.selected {
  background-color: #888;
  color: #FFF
}
.list-group-item {
  text-align: center;
}

.stock-range-list-group {
  width: 100%;
  justify-content: center
}