h1{
    color: rgba(68,114,206,1)
}

/* The grid */

.container{
    display: grid;
    grid-template-areas:
      "sm sm"
      "radar scatter"
      "boxparent boxparent";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 500px 200px;
    gap: 10px;
}

.small-mults{
    grid-area: sm;
}

.radar-chart{
    grid-area: radar;
}

.scatter-plot{
    grid-area: scatter;
}

.box-plot{
    grid-area: box;
    background-color: #d2c9a5;
}

.actual-graph {
  width: 100%;
  height: 100%;
}

#box-plot-parent{
    display: grid;
    grid-template-areas:
      "opy - opx opx"
      "box box box box";
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0px;
    background-color: #e8e2cc;
}

.box-plot-parent-parent{
    grid-area: boxparent;
}

#boxyaxis{
    grid-area: opy;
  margin-left: auto;
/*  padding-right: 40px; */
}

#boxxaxis{
    grid-area: opx;
  margin-right: auto;
/*  padding-right: 40px; */
}

.axisselector label {
  display: inline-block;
  font-family: sans-serif, Arial;
  font-size: 16px;
}

.axisselector input {
  opacity: 0;
  width: 0;
}

.dash-options-list-option[aria-selected="true"] {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.dash-options-list-option[aria-selected="false"] {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.infoGraph {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.info-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index=500;

  width: 24px;
  height: 24px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight:bold;
}

.info-btn-info{
  display: flex;
  align-items: left;
  justify-content: left;

  border-radius: 5%;
  border: 1px solid blue;


  background-color: white;
  top: 100%;
  width: 200px;

  box-shadow: 0 10px 20px rgba(20, 60, 20, 0.4);
  padding: 5px;
}

