body {
  /* background-color: powderblue; */
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 100;
}

h1 {
  color: black;
  font-weight: 100;
  margin: 2pt;
}

svg {

  border: 1px solid rgb(0, 193, 0);
  margin: 1px;
  padding: 1px;
}

.box {
  stroke-width: 0.5px;
  stroke: rgb(139, 139, 139);
  opacity: 0.9;
  rx: 2pt;
}

.boxInfo {
  stroke-width: 0.5px;
  stroke: rgb(255, 186, 186);
  opacity: 0.9;
  rx: 2pt;
}

.boxCharge {
  fill: coral;
  stroke-width: 0px;
  stroke: rgb(255, 84, 84);
  opacity: 0.8;
  rx: 2pt;
}

.boxText {
  font-size: 12px;
  font-weight: 400;

}

.DateText {
  font-size: 24px;
  font-weight: 400;

}

.boxText2 {
  font-size: 16px;
  font-weight: 400;
}

.boxText3 {
  font-size: 12px;
  font-weight: 400;
}

.boxText4 {
  font-size: 10px;
  font-weight: 400;
}

.myClass {
  font-size: 8pt;
  fill: rgb(23, 136, 139);
}

.Chart_X_Axis {
  font-size: 7pt;
  font-weight: 400;
  fill: rgb(0, 0, 0);

}

.Chart_small {
  font-size: 12px;
  font-weight: 400;
  fill: rgb(0, 0, 0);

}

.topBar {
  background-color: white;
  display: flex;
  position: fixed;
  padding-left: 5px;
  width: 100%;
}

.title {
  font-size: 24px;
  margin-left: 20px;
  font-weight: 300;
}

.menu-button {
  background-color: rgb(255, 255, 255);
  display: inline-block;
  padding: 1px;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(62, 22, 22);
  height: 30px;
}

.menu-button:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}

.bar {

  fill: darkorange;
  stroke-width: 0.2;
  stroke: red;
  fill-opacity: 80%;
}

.barPV {

  fill: rgb(252, 171, 73);
  stroke-width: 0.2;
  stroke: rgb(254, 87, 50);
  fill-opacity: 80%;
}

.barCH {

  fill: rgb(121, 201, 60);
  stroke-width: 0.2;
  stroke: rgb(90, 147, 28);
  fill-opacity: 80%;
}

.barDCH {

  fill: rgb(255, 111, 111);
  stroke-width: 0.2;
  stroke: red;
  fill-opacity: 80%;
}

.barLO {

  fill: rgb(44, 199, 255);
  stroke-width: 0.2;
  stroke: rgb(24, 125, 207);
  fill-opacity: 80%;
}

/*variables*/
:root {
  --white: #fff;
  --main: #eaedf0;
  --accent: #0041ff;
  --accent-2: #ebedf0;
}

/*styles*/
/* body {
  background-color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
} */
.container {
  position: fixed;
  height: auto;
  border-style: solid;
  border-width: thin;
  border-color: cadetblue;
  box-shadow: 0px 3px 8px gray;
  margin: auto;
  top: 5%;
  right: 20%;
  bottom: auto;
  left: 20%;
  /* 

left: 0px;
  top: 0px;
  z-index: -1; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 20vh;


  display: inline-block;
  background-color: cornsilk;
  border-radius: 12px;
  padding: 0 1em;
  margin-top: 2em;
}

header {
  margin: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px;
}

.header-display {
  display: flex;
  align-items: center;
}

.header-display p {
  color: var(--accent);
  margin: 5px;
  font-size: 1.6rem;
  word-spacing: 0.5rem;
  font-weight: 400;
}

pre {
  padding: 4px;
  margin: 0;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
}

.days,
.week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: auto;
  padding: 0 10px;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 400;
}

.week div,
.days div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 80%;
}

.days div:hover {
  background: var(--accent-2);
  color: rgb(25, 25, 201);
  cursor: pointer;
}

.week div {
  opacity: 0.5;
  height: 20px;
  font-size: 16px;
}

.current-date {
  background-color: var(--accent);
  color: var(--white);
}

.display-selected {
  margin-bottom: 10px;
  padding: 0px 0px;
  text-align: center;
}

.ReqRespBox {
  background-color: rgb(255, 255, 139);
    font-size: 28px;
  width: 26px;
  margin-left: 8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: darkorange;
}

.ReqResp {
  color: forestgreen;
  text-align: center;
  position: absolute;
  top: -5px;
}