body {
  text-align: center;
  font-family: Arial, sans-serif;
}

h1 {
  margin-top: 30px;
  font-size: 40px;
  font-weight: bold;
}

h2 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
}

#word-container {
  margin-top: 20px;
  font-size: 20px;
}

#wordBox{
  font-size: 20px;
}

#input-container {
  margin-top: 20px;
}

input[type="number"] {
  height: 40px;
  font-size: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="text"] {
  height: 40px;
  max-width: 150px;
  font-size: 20px;
  padding: 10px;
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#score-text {
  margin-top: 20px;
  font-size: 24px;
}

.hidden {
  display: none;
}

/* Instructions Box */
.instructions-box {
  max-height: 70px;
  overflow: hidden;
  padding: 15px;
  background-color: #e8f4e8;
  border: 2px solid #97d23d;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

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

/* Instruction Container */
.v-instruction-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0.2rem solid #97d23d;
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.v-instruction-container ul {
  padding-left: 20px;
  line-height: 1.6;
}

.v-instruction-container li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

/* Button Styles */
button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.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;
}