body {
  font-family: 'NHHUD', sans-serif;
  text-align: left;
  margin-top: 50px;
  background-color: skyblue;
}

button {
  font-family: 'NHHUD', sans-serif;
  width: 150px;
  height: 50px;
  font-size: 16px;
}

.icon-btn{
  align-items: center;
  gap: 6px;
  padding: 1px 1px;
  overflow: hidden;
}

.icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.depressed {
    background: rgb(77, 74, 74);
}

img {
  max-width: 150px;
  max-height: 100px;
  width: auto;
  height: auto;
}

.fancy-box {
  border: 4px solid transparent; /* always 4px */
  padding: 4 4px;
  border-radius: 5%;
  background-color: #f0fff0;
  font-weight: bold;
  color: #333;
  margin: auto;
  width: fit-content;
  transition: border-color 0.1s ease; /* smoother */
  white-space: pre-wrap;
  word-wrap: break-word;
  padding: 4px;
}
#text-area{
  min-width: 300px;
  min-height: 50px;
  text-align: center;
}
#info-area{
  display: inline-block;
  margin-right: auto;
  margin-left: 0 !important;
  text-align: center;
  white-space: pre-line;

}

.correct-border {
  border-color: green;
  transition: border 0.1s ease;
}

.wrong-border {
  border-color: red;
  transition: border 0.01s ease;
}

@font-face {
  font-family: 'NHHUD';
  src: url('./fonts/NHHandwriting-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.hidden {
  display: none;
}

.center-div {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.speech-bubble {
  position: absolute;       /* absolute or fixed positioning */
  bottom: 90%;                /* adjust where it appears */
  left: 50%;                /* horizontal position */
  transform: translateX(-50%); /* center horizontally */
  background: #ffeb3b;
  color: #000;
  padding: 10px 15px;
  border-radius: 15px;
  z-index: 9999;            /* ensures it’s on top */
}

.centered {
  width: 50%;
  margin: 0 auto;
  text-align: center;

}
text-area {
  min-width: 300px;
  min-height: 100px;
}
  


