.main-container {
  background-color: var(--clr-body-clr);
  overflow-x: hidden;
}
.title-div-container {
  width: 100%;
  height: 100%;
  background-color: var(--clr-container-clr);
  z-index: 105;
  position: relative;
  padding: 0.5rem 0.5rem;
}

.title-div {
  display: flex;
  gap: 5rem;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  border-radius: 1rem;
  z-index: 105;
  position: relative;
  text-align: center;
}
.logo-div {
  /* align-self: flex-start; */
  display: inline-block;
  margin-left: 2rem;
}

h1 {
  flex: 0 0 1;
  display: inline-block;
  align-self: center;
  margin: auto;
  /* vertical-align: middle; */
}

/* bolts */
.round {
  display: inline-block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(248, 242, 242, 0.855),
    rgba(247, 237, 237, 0.855),
    rgba(192, 190, 190, 0.855)
  );
  box-shadow: 0 0 0 0.3rem rgba(255, 255, 255, 0.55);
}
.box {
  cursor: pointer;
}
.left-top {
  left: 1rem;
  top: 1rem;
}
.left-bottom {
  left: 1rem;
  bottom: 1rem;
}
.right-top {
  right: 1rem;
  top: 1rem;
}
.right-bottom {
  right: 1rem;
  bottom: 1rem;
}
.title-div h1 {
  justify-self: center;
  font-size: 2.8rem;
  color: var(--clr-text-clr);
  text-transform: uppercase;
}
.container {
  padding: 0 0 0.5rem 0.5rem;
  display: flex;
  flex-direction: row;
  background-color: var(--clr-container-clr);

  gap: 0.5rem;
}

/* ********************** */
/* *******SIDEBAR******* */
/* ********************** */

.sidebar {
  /* background-color: gray; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: #fffcfc;
  box-shadow: 0 1rem 1rem 0 rgba(177, 176, 176, 0.855);
  padding: 1.2rem 1.6rem;
  border-radius: 0.9rem;
  left: 0;
}

.logo-div {
  padding: 0.8rem 0;
  width: 8rem;
}

.logo {
  width: 100%;
}

.tool-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  font-size: 2rem;
}

.tool-link:link,
.tool-link:visited {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #333;
}
.tool-link[title="Variables"] {
  color: var(--clr-title-background);
}

.tool-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.tool-list span {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
}

.icons {
  width: 4rem;
  height: 4rem;
  color: var(--clr-title-background);
  /* box-shadow: 0 0 0.5rem 0 rgba(255, 255, 255, 0.5); */
}

/* ****************** */
/* *****MAIN******* */
/* ****************** */
.main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.task-title {
  font-size: 1.8rem;
  padding: 0.2rem 1.6rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;

  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  letter-spacing: 0.15rem;
}

.task-variable {
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background3),
    var(--clr-side-background2)
  );
}

.main-section {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: 50fr 50fr;
  gap: 0.5rem;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 0 0.5rem 0 0;
}

.main__task-div {
  width: 100%;
  background-color: #ffffffc9;
  border-radius: 0.9rem;
  /* padding: 1.5rem; */
  max-height: 100%;
  font-size: 1.6rem;
  border: 0.5rem solid var(--clr-text-clr);
  overflow-y: hidden;
  overflow-x: hidden;
}

.main__task-div:nth-child(1) {
  position: relative;
  grid-column: 1/-1;
  /* grid-row: 1/4; */
  overflow-y: hidden;
}

.main__task-div:nth-child(2) {
  grid-column: 1/-1;
  /* grid-row: 1/4; */
  overflow-y: hidden;
}

.title-control-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background3),
    var(--clr-side-background2)
  );
}

.footer {
  font-size: 1.2rem;
  /* padding: 0 1rem; */
  grid-column: 1/-1;
  text-align: center;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background3),
    var(--clr-side-background2)
  );
  color: var(--clr-text-clr);
  margin-bottom: 0;
}

.div__control {
  /* position: absolute;
  top: 1.6rem;
  right: 2.2rem; */
  margin-top: 0.35rem;
  margin-right: 1rem;
}

.div__control img {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

.ctrl-icons {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: var(--clr-title-background);
  color: var(--clr-text-clr);
}

/* ************simulation*********** */

/* canvas */
.canvas__div {
  width: 100%;
  border: 1px solid var(--clr-title-background);
  background-color: #fff;
  display: grid;
  height: auto;
  grid-template-columns: 1fr;
  overflow-x: hidden;
}
.mainsimulation {
  display: flex;
  justify-content: center; /* Centers the images horizontally */
  align-items: center; /* Centers the images vertically */
  /* height: 100vh;  */
  width: 100%; /* Ensures the container takes the full width */
  flex-direction: column; /* Makes sure images stack on top of each other */
  position: relative;
}

.img1 {
  height: 100px;
  width: 150px;
  margin: 20px auto;
}
.img2 {
  height: 100px;
  width: 150px;
  margin: 20px auto;
}
.img3 {
  height: 100px;
  width: 150px;
  margin: 20px auto;
}
.img4 {
  height: 100px;
  width: 150px;
  margin: 20px auto;
}
.reset {
  height: 39px;
}

.simoptions {
  position: relative;
  background-color: rgba(135, 207, 235, 0.621);
  width: 25%;
  height: 550px;
  float: left;
  filter: blur(0px);
  top: auto;
}
#Halfwave {
  width: 453px;
  /* height: 400px; */
  /* margin-top: -26px;
  margin-left: 100px; */
}
#Fullwave {
  width: 400px;
  /* height: 400px; */
  /* margin-top: 30px;
  margin-left: 100px; */
}
#halfwithdso {
  width: 453px;
  height: 397px;
  /* margin-left:100px; */
}
#halfdso {
  width: 870px;
  height: 650px;
  margin-left: -100px;
  margin-top: -150px;
  position: relative;
}
#halfdso1 {
  width: 800px;
  height: 650px;
  margin-left: -80px;
  margin-top: -130px;
  position: relative;
}

#inputw {
  /* display: inline-block; */
  width: 300px;
  height: 120px;
  margin-left: 10px;
  margin-top: -452px;
  position: absolute;
}

#outputh {
  /* display: inline-block; */
  width: 300px;
  height: 120px;
  margin-left: 10px;
  margin-top: -452px;
  position: absolute;
}
#outputf {
  /* display: inline-block; */
  width: 300px;
  height: 120px;
  margin-left: 10px;
  margin-top: -452px;
  position: absolute;
}

#fullwithdso {
  width: 453px;
  height: 468px;
  margin-top: -25px;
  /* margin-left:100px; */
  /* margin-left:100px; */
}
/* .SLIDERS {
  display: flex;
  flex-direction: column;
} */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: black;
  outline: none;
  opacity: 0.5;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.slider:hover {
  opacity: 1;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border: 2px solid red;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.slider::-webkit-slider-thumb:hover {
  width: 20px;
  height: 20px;
}
.Result {
  display: flex;
  justify-content: center;
  margin: 10px;
  /* width: 120px;
  height: 30px; */
  border-radius: 20px;
  cursor: pointer;
  padding-left: 8px;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
}

#transformers {
  height: 35px;
  width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(65, 62, 62, 0.219);
  cursor: pointer;
}

.addbutton {
  display: flex;
  justify-content: center;
  margin: 10px;
}

#addbutton {
  position: absolute;
  /* width: 120px;
  height: 30px; */
  border-radius: 30px;
  cursor: pointer;
  margin-left: -189px;
  padding-left: 8px;
  /* padding-top: 4px; */
  padding-right: 8px;
  /* padding-bottom: 4px; */
  margin-top: -99px;
}

#addbutton1 {
  position: absolute;
  /* width: 120px;
    height: 30px; */
  border-radius: 30px;
  cursor: pointer;
  margin-left: 173px;
  padding-left: 8px;
  /* padding-top: 4px; */
  padding-right: 8px;
  /* padding-bottom: 4px; */
  margin-top: -99px;
}
#addbutton2 {
  position: absolute;
  /* width: 120px;
        height: 30px; */
  border-radius: 30px;
  cursor: pointer;
  margin-left: -15px;
  padding-left: 8px;
  /* padding-top: 4px; */
  padding-right: 8px;
  /* padding-bottom: 4px; */
  margin-top: -23px;
}
.addbutton {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  padding: 8px;
  border-radius: 0.5rem;

  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  border: none;
  cursor: pointer;
  margin-top: 21px;
}

.close {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  padding: 8px;
  border-radius: 0.5rem;

  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  border: none;
  cursor: pointer;
  margin-top: 21px;
}

#instructions {
  display: none;
  height: 90%;
  width: 99.4%;
  position: relative;
  background-color: white;
  /* top: 0px; */
  justify-self: center;
  /* left: 45px; */
  /* border: black solid; */

  border-width: 3px;
  z-index: 7;
}
.icontent {
  margin-left: 35px;
  line-height: 4.3rem;
}
#instructions button {
  width: 60px;
  height: 31px;
  border-radius: 20px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 5px;
  margin-bottom: 5px;
}

#calculate {
  display: none;
  height: 400px;
  width: 700px;
  position: absolute;
  background-color: white;
  top: 110px;
  left: 45px;
  border: black solid;
  border-width: 0.1rem;
  z-index: 7;
}

.outputgraph1half {
  margin-left: 35px;
  line-height: 1.63rem;
}
.outputgraph1full {
  margin-left: 35px;
  line-height: 1.63rem;
}
#calculate1 {
  display: none;
  height: auto;
  width: 87vw;
  max-width: 630px;
  position: absolute;
  background-color: white;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  border: 0.05rem solid black;
  z-index: 7;
}

.strong-text {
  font-weight: 700;
  color: var(--clr-title-background);
}

.icalculate1 {
  margin-left: 0; /* Adjust margin to make it more flexible */
  line-height: 2.4rem; /* Adjust the line height for smaller screens */
  margin-left: 0;
  line-height: 2.2rem;
  margin-top: -16px;
}
#calculate {
  display: none;
  height: auto;
  width: 87vw;
  max-width: 630px;
  position: absolute;
  background-color: white;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  border: 3px solid black;
  z-index: 7;
}

.icalculate {
  margin-left: 0; /* Adjust margin to make it more flexible */
  line-height: 2.4rem; /* Adjust the line height for smaller screens */
  margin-left: 0;
  line-height: 2.2rem;
  margin-top: -16px;
}
#atm {
  display: block;
  margin: 20px auto 0; /* Center the button */
  padding: 10px 20px;
  font-size: 1rem;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);

  border-radius: 30px; /* Rounded corners */
  cursor: pointer;
  text-align: center;
  box-shadow: none; /* Remove any shadow effects */
}
.close {
  display: block;
  margin: 20px auto 0; /* Center the button */
  padding: 10px 20px;
  font-size: 1rem;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);

  border-radius: 30px; /* Rounded corners */
  cursor: pointer;
  text-align: center;
  box-shadow: none; /* Remove any shadow effects */
}
#outputgraphhalf {
  display: none;
  height: 450px;
  width: 750px;
  position: absolute;
  background-color: white;
  top: 110px;
  left: 25px;
  border: black solid;
  border-width: 3px;
  z-index: 7;
}
#outputgraphfull {
  display: none;
  height: 450px;
  width: 750px;
  position: absolute;
  background-color: white;
  top: 110px;
  left: 25px;
  border: black solid;
  border-width: 3px;
  z-index: 7;
}
.icalculate {
  margin-left: 35px;
  line-height: 1.63rem;
}

#inputgraph {
  display: block;
  width: 90vw; /* Flexible width based on viewport */
  max-width: 750px; /* Set a maximum width */
  /* height: auto;  */
  height: 77%;
  background-color: white;
  position: absolute;
  top: 110px;
  left: 5vw; /* Center based on viewport width */
  border: 3px solid black;
  border-radius: 8px;
  padding: 15px;
  z-index: 7;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for clean look */
}
.inputgraph1 {
  margin-left: 35px;
  line-height: 1.63rem;
}
/* position: relative;
padding: 20px;
border: 1px solid #ccc;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
background-color: #fff;
width: 100%;
max-width: 600px;
margin: 0 auto; */
/* #calculate button {
  
  border-radius: 20px;
  cursor: pointer;
  position: inherit;
  margin-left: 20px;
    padding-left: 8px;
    padding-top: 4px;
    padding-right: 8px;
    padding-bottom: 4px;
  bottom: 0;
  right: 0;
  margin-right: 5px;
  margin-bottom: 5px;
} */
/* #calbutton {
  position: inherit; 
   
    border-radius: 30px;
    cursor: pointer;
    margin-left: 20px;
    padding-left: 8px;
    padding-top: 4px;
    padding-right: 8px;
    padding-bottom: 4px;
    
  } */
#close1 {
  position: absolute;
  top: 10px; /* Adjust as per your layout */
  right: 10px; /* Adjust as per your layout */
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  outline: none;
}

#atm1 {
  position: relative;
  top: -194px;
  right: -298px;
  padding: 7px 31px;
  border-radius: 30px;
  background-color: #f0f0f0;
  border: 2px solid #000;
  cursor: pointer;
}
.atm1 {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  padding: 8px;
  border-radius: 0.5rem;

  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  border: none;
  cursor: pointer;
  margin-top: 21px;
}
#atm2 {
  position: relative;
  top: -187px;
  right: -305px;
  padding: 2px 9px;
  border-radius: 30px;
  background-color: #f0f0f0;
  border: 2px solid #000;
  cursor: pointer;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
}

#atm3 {
  position: relative;
  top: -195px;
  right: -305px;
  padding: 2px 9px;
  border-radius: 30px;
  background-color: #f0f0f0;
  border: 2px solid #000;
  cursor: pointer;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
}
#connectbutton {
  position: absolute;
  /* width: 120px;
     height: 30px; */
  border-radius: 30px;
  cursor: pointer;
  margin-left: -10px;
  padding-left: 8px;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
}
.help,
.practice {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* padding: 5rem; */
  position: relative;
}
.apparatus {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem;
  position: relative;
}
.objective {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 13rem;
  position: relative;
  overflow: hidden;
}

.objective__title,
.apparatus__title {
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: 700;
}

.objective__sub {
  font-size: 1.8rem;
  /* font-weight: 700; */
}
.objective__main {
  border: 2px solid var(--clr-title-background);
  font-size: 1.8rem;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  font-weight: 549;
}

.objective__list {
  padding-left: 2rem;
}
.apparatus-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
  justify-items: center;
}
.apparatus-tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.tool-img {
  width: 100%;
}

.practice {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}

.practice-steps {
  font-style: 1.8rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}
.practice-step-no {
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  padding: 1rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 100%;
  text-align: center;
  font-style: 1.8rem;
  font-weight: 700;
}

.practice-steps-additional {
  grid-column: 1/-1;
  justify-self: center;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 2rem;
}
.btn {
  padding: 1rem;
  font-weight: 700;
  border: none;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  justify-self: center;
}
.btn:hover {
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  background-clip: text;
  color: transparent;
  border: 0.3rem solid var(--clr-title-background);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

canvas {
  width: 80%;
  height: 100%;
  margin: 0 auto;
}

#connectbutton {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  padding: 8px;
  border-radius: 0.5rem;

  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  border: none;
  cursor: pointer;
  /* margin-top: 21px; */
}
.circuit-dia:hover span,
.cross-img:hover span {
  display: block;
}
.canvas {
  position: relative;
  display: block;
  /* width: 100%;
  height: 100%; */
}
/* .radio-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
} */

.radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.radio-option input {
  margin-right: 10px; /* Space between radio button and label */
}

.ok-button-container {
  text-align: center;
  margin-top: 20px;
}

/* .ok-button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
} */

/* **********VARIABLES**************** */
/* Center container for sliders and connect button */
.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px; /* Adds space between sliders and buttons */
}

/* Sliders styling */
.SLIDERS {
  margin-top: 10px;
  width: 300px; /* Adjust the width of the sliders */
  text-align: center;
}

/* Button grid layout */
/* Button grid layout - Triangular shape */
.button-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  grid-template-rows: repeat(2, auto); /* 2 rows */
  gap: 20px; /* Space between buttons */
  justify-items: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}

/* Placing buttons in a triangular shape */
.button-grid button:nth-child(1) {
  grid-column: 2; /* Middle column, first row */
}

.button-grid button:nth-child(2) {
  grid-column: 1; /* Left column, second row */
}

.button-grid button:nth-child(3) {
  grid-column: 3; /* Right column, second row */
}

/* General button styling */
button {
  padding: -1px 20px;
  font-size: 16px;
  cursor: pointer;
  min-width: 25px;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.buttons-column {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem; /* Space between buttons */
  align-items: center; /* Center the buttons */
}
#variables {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.settings-sections {
  display: flex;
  flex-direction: column;
  /* border: 0.1rem solid #777; */
  /* padding: 0 1rem; */
  /* gap: 1rem; */
}

.variables-sections {
  padding: 1rem 1rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.quadrant-img {
  align-self: center;
}

.var-div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  justify-items: center;
  row-gap: 1rem;
  width: 80%;
}

.input-container {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 80fr 20fr;
  gap: 2rem;
}

.var-spinner {
  justify-self: center;
}

.var-slider {
  grid-column: 1/-1;
  width: 50%;
  justify-self: end;
}

#comments {
  color: #1b1b1b;
  align-self: stretch;
}

.control-sections {
  height: 100%;
}

.hide {
  display: none;
}

input[type="radio"] {
  cursor: pointer;
}

.practice-step-button {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.radioGroup {
  display: flex;
  align-items: center;
}
#shapeDropdown {
  border: 2px solid var(--clr-title-background);
  border-radius: 8%;
  padding: 3%;
}
#shapeDropdown option {
  background-color: var(
    --clr-title-background
  ); /* Background color for options */
  color: #fff; /* Text color for options */
}
.shapeDrop {
  margin-left: 2%;
}
@keyframes highlight {
  0% {
    transform: scale(1);
    box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.5);
  }
  100% {
    transform: scale(1.02);
    box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.8);
  }
}
@-webkit-keyframes highlight {
  0% {
    transform: scale(1);
    box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.5);
  }
  100% {
    transform: scale(1.02);
    box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.8);
  }
}
@keyframes probeslideup {
  from {
    top: 200px;
  }

  to {
    top: 100px;
  }
}

@keyframes wireslideup {
  from {
    top: 300px;
  }

  to {
    top: 200px;
  }
}
@keyframes insertdistube {
  from {
    top: 100px;
  }

  to {
    top: 215px;
  }
}
.hands {
  transform-origin: top left;
}
@keyframes rotatehand {
  to {
    transform: rotate(20deg);
  }
}
@keyframes moverings {
  from {
    left: 46px;
    top: 7px;
  }
  to {
    left: 52px;
    top: 7px;
  }
}
@keyframes movesplitrings {
  from {
    left: 52px;
    top: 7px;
  }
  to {
    left: 68px;
    top: 7px;
  }
}
@keyframes movesplitrings2 {
  from {
    left: 68px;
    top: 7px;
  }
  to {
    left: 80px;
    top: 7px;
  }
}
@keyframes movesplitrings3 {
  from {
    left: 80px;
    top: 7px;
  }
  to {
    left: 88px;
    top: 7px;
  }
}
@keyframes movesplitrings4 {
  from {
    left: 88px;
    top: 7px;
  }
  to {
    left: 102px;
    top: 7px;
  }
}
@keyframes movesplitrings5 {
  from {
    left: 102px;
    top: 7px;
  }
  to {
    left: 111px;
    top: 7px;
  }
}
@keyframes movesplitrings6 {
  from {
    left: 111px;
    top: 7px;
  }
  to {
    left: 120px;
    top: 7px;
  }
}
@keyframes movesplitrings7 {
  from {
    left: 120px;
    top: 7px;
  }
  to {
    left: 132px;
    top: 7px;
  }
}
@keyframes movesplitrings8 {
  from {
    left: 132px;
    top: 7px;
  }
  to {
    left: 142px;
    top: 7px;
  }
}
@keyframes movesplitrings9 {
  from {
    left: 142px;
    top: 7px;
  }
  to {
    left: 150px;
    top: 7px;
  }
}
@keyframes movesplitrings10 {
  from {
    left: 150px;
    top: 7px;
  }
  to {
    left: 161px;
    top: 7px;
  }
}
@keyframes movesplitrings11 {
  from {
    left: 161px;
    top: 7px;
  }
  to {
    left: 169px;
    top: 7px;
  }
}
@keyframes movesplitrings12 {
  from {
    left: 169px;
    top: 7px;
  }
  to {
    left: 175px;
    top: 7px;
  }
}

.obs {
  line-height: 1.7;
}
.result-bold {
  font-weight: bolder;
  color: rgb(4, 116, 99);
}
.observations {
  display: none;
  margin: 20px;
  padding: 10px;
  justify-self: center;
  align-items: center;
  height: 87%;

  width: 85%;

  position: absolute;
  background-color: rgb(174, 215, 232);
  border: black solid;
  border-width: 3px;
  z-index: 7;
}
.observations td,
th {
  border: 2px solid #000000;
  text-align: center;
  padding: 6px;
}
.tablesdiv {
  height: 361px;
  justify-content: center;
  display: flex;
  overflow-y: auto;
}
.tableObservations {
  display: flex;
  height: 40px;
  width: 100%-10px;
  align-items: center;
  justify-content: space-between;
  padding-right: 5px;
  padding-left: 5px;
}

.tableObservations button {
  width: 60px;
  height: 31px;
  border-radius: 20px;
  cursor: pointer;
}
.observation2 {
  display: none;
  margin: 20px;
  padding: 10px;
  justify-self: center;
  align-items: center;
  height: 78%;

  width: 85%;

  position: absolute;
  background-color: rgb(174, 215, 232);
  border: black solid;
  border-width: 3px;
  z-index: 7;
}
.observation2 tbody,
th {
  border: 2px solid #000000;
  text-align: center;
  padding: 15px;
}
.observation2 td {
  border-left: 2px solid #000000;
  text-align: center;
  padding: 10px;
}
.observationTable2 {
  border-collapse: collapse;
  width: 553px;
  margin-top: 15px;
  margin-left: 25px;
  margin-bottom: 5px;
  height: min-content;
  background-color: white;
}

.insert-reset-observation {
  display: flex;
  justify-content: center;

  margin: 10px;
}

.insert-reset-observation button {
  width: 120px;
  height: 30px;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  /* border-radius: 1rem; */
  border-radius: 20px;
  cursor: pointer;
}

#outer_container {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Adjust this max-width as needed */
  margin: auto; /* Centers the container */
  background-color: yellow; /* The background color */
}

#image_container {
  position: absolute; /* Allows the images to maintain their absolute positioning */
  width: 100%; /* Make it responsive */
}

.circuitb {
  /* transform: scale(0.9); */
  width: 100%;
}
#circuit1 {
  /* transform: scale(0.9); */
  width: 87%;
  position: relative;
  left: 9.7%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-left: 20px; */
}
/* #circuit2 {

width: 91%;
position: relative;
left: 3.7%;
display: flex;
align-items: center;
justify-content: center;


} */

.values button {
  width: 30px;
  height: 20px;
  border-radius: 10%;
  border: 1px solid black;
}
.values {
  /* margin: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
#exp {
  height: 35px;
  width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(65, 62, 62, 0.219);
  cursor: pointer;
}
#exp1 {
  /* height: 35px; */
  /* width: 180px; */
  /* box-shadow: 0px 8px 16px 0px rgba(65, 62, 62, 0.219); */
  /* cursor: pointer; */
}
#exp2 {
  /* height: 35px; */
  /* width: 180px; */
  /* box-shadow: 0px 8px 16px 0px rgba(65, 62, 62, 0.219); */
  /* cursor: pointer; */
}
#exp1a {
  height: 35px;
  width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(65, 62, 62, 0.219);
  cursor: pointer;
}

.observation {
  display: none;
  margin: 20px;
  padding: 10px;
  justify-self: center;
  align-items: center;
  height: 70%;

  /* width:85%; */

  position: absolute;
  background-color: rgb(174, 215, 232);
  border: black solid;
  border-width: 3px;
  z-index: 7;
}

.observationTable {
  display: grid;
  justify-content: center;
  align-items: center;
  border-collapse: collapse;
}
.observationTable tbody {
  background-color: white;
}
.observation td,
th {
  border: 2px solid #000000;
  text-align: center;
  padding: 8px;
}
.tablediv {
  max-height: 90%;
  overflow-x: auto;
  overflow-y: scroll;
}

.tableObservation {
  display: flex;
  height: 40px;
  width: 100%-10px;
  align-items: center;
  justify-content: space-between;
  padding-right: 5px;
  padding-left: 5px;
}

.tableObservation button {
  width: 60px;
  height: 31px;
  border-radius: 20px;
  cursor: pointer;
}
#grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Creates two equal columns */
  grid-gap: 10px; /* Adds space between buttons */
  max-width: 300px; /* Set a max width for the grid */
  margin: auto; /* Center the grid horizontally */
}

.reset-btn {
  grid-column: span 2;
  display: flex;
  justify-content: center;
}

.grid2 {
  padding: 2rem 0rem 2rem 0.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
}

.var-div {
  display: grid;
  grid-template-columns: 20fr 20fr;
  row-gap: 1rem;
  column-gap: 1rem;
}

#IBgraph {
  display: none;
  height: 400px;
  width: 700px;
  position: absolute;
  background-color: white;
  top: 110px;
  left: 45px;
  border: black solid;
  border-width: 3px;
  z-index: 7;
}
#myChart {
  display: flex;
  justify-content: center;
  align-items: center;
}
#view {
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  border-radius: 5px;
}
#view1 {
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  border-radius: 5px;
}
#view2 {
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  border-radius: 5px;
}
#view3 {
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  border-radius: 5px;
}
#close1 {
  position: absolute;
  top: -1%;
  right: -2%;
  width: 3rem;
  height: auto;
  aspect-ratio: 1;
  display: inline-block;
  border-radius: 100%;
  font-size: 2.4rem;
  font-weight: bold;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
}

/*------------------------------------------------------------------------------------------------------------*/

.procedure {
  /* grid-column: 1/-1; */
  /* display: flex; */
  flex-direction: column;
  gap: 1rem;
  border: 2px solid var(--clr-title-background);
  font-size: 1.8rem;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  width: 80%;
  align-self: center;
}

.procedure-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  /* text-align: center; */
}

.radio-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.radio-container input[type="radio"] {
  margin-right: 20px; /* Adds more space between the radio button and the text */
}

.ok-button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background-color: #4caf50;
  color: white;
  cursor: pointer;
}

.ok-button:hover {
  background-color: #45a049;
}

.ok-button {
  width: 120px;
  height: 30px;
  background-image: linear-gradient(
    to bottom,
    var(--clr-side-background2),
    var(--clr-side-background3)
  );
  color: var(--clr-text-clr);
  /* border-radius: 1rem; */
  border-radius: 20px;
  cursor: pointer;
}

.center-content {
  flex-direction: column;
  text-align: center;
}

.SLIDERS input[type="range"] {
  width: 100%; /* or a fixed value like 300px */
  max-width: 400px; /* Set the maximum width you want the slider to have */
  margin: 10px 0;
}

.SLIDERS p {
  margin-bottom: 5px;
}

@media only screen and (max-width: 991px) {
  .v-mobile-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

.custom-container {
  border: none;
  padding: 1em 3em;
}

.custom-container > * {
  padding: 0.5em;
}

.highlight {
  animation: hlt 5s ease !important;
}

@keyframes hlt {
  10% {
    box-shadow: 0 0 5px 5px rgb(255, 208, 0);
  }
  100% {
    box-shadow: 0 0 5px 5px transparent;
  }
}

@media screen and (max-width: 991px) {
  .v-floating-details {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    padding: 0 15px 5px;
    font-size: 1rem;
    border: none;
    background: #2c99ce;
    color: #fff;
    border-radius: 20px 20px 0 0;
    font-weight: 600;
    z-index: 3;
    opacity: 0.7;
    margin-bottom: 0;
    text-align: center;
  }
  .v-floating-details > .v-detail-title {
    display: none;
  }
  body {
    padding-bottom: 40px;
  }
}
