text {
  pointer-events: none;
}

#buttonContainer {
  text-align: center;
  margin-top: 1rem;
}

#buttonContainer button {
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}


.para {
  color: white;
  font-family: "Times New Roman", Times, serif;
  word-wrap: break-word;
  width: 100%;
  height: 100%;
  padding: 10px;
  font-size: 1.1rem;
}

.sc {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

canvas#experiment {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 10;
    display: block;
    margin: 0 auto;
    background-color: black;
}

#experiment1, #experiment, #circuit-board2 {
  width: 100%;
  height: 100%;
}

#experiment1{
  width: 50vw;
  height: 80px;
  background-color: #222;
  border-radius: 1rem;
  color: white;
  padding: 7px;
}

#working-area2 {
  border: 0.2rem solid #97d23d;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  background-color: white;
  box-sizing: border-box;
  padding: 0;
}

#result {
  width: 70%;
  height: 5%;
  background-color: #222;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 0.5rem;
  font-weight: bold;
}

.column {
  text-align: center;
  margin: 20px 0;
}

#circuit-board {

  width: 60vw;
  height: 100%;
}

#working-area {
  width: 100%;
  height: 100%;
  background-color: black;
  padding: 20px;
  box-sizing: border-box;
}

/* For the instruction box */
.instructions-box {
  max-height: 70px;
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.instructions-box.expand {
  max-height: 400px;
}

.v-instruction-container {
  border: 0.2rem solid #97d23d;
  justify-content: flex-start;
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 1rem;
  background-color: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.v-instruction-container ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 1.1rem;
}

.v-instruction-container ul li {
  padding: 5px 0;
  color: #333;
}

.v-button{
  margin: 10px;
}

.v-collapsible:after {
  content: '\2193'; /* Downward arrow */
  scale: 2.5;
  font-weight: bold;
  color: #ff0000;
  transition: transform 0.3s ease; /* Smooth rotation */
}

.v-collapsible-active:after {
  transform: rotate(180deg); /* Rotate 180 degrees */
}

body{
  margin-bottom: 30px;
}
