.word-list {
  margin: 20px 0;
  padding-left: 20px;
}

.word-box {
  margin-bottom: 30px;
  padding: 10px 0;
  border-left: 5px solid #fdd835;
  padding-left: 10px;
}

.word-box h4 {
  color: #f75f5f;
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.word-box h4::before {
  content: "✏️";
}

.line-input {
  display: block;
  width: 240px;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fffdf8;
  font-family: "Comic Sans MS", cursive, sans-serif;
}

#drawingCanvas {
  display: block;
  margin: 20px auto;
}
.next-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #f75f5f;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.next-btn:hover {
  background-color: #d84315;
}
.profile-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f4f4f4;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.avatar-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-right: 20px;
}

.profile-name {
  font-weight: bold;
  font-size: 1.2rem;
  flex-grow: 1;
}

.switch-profile-btn {
  padding: 8px 16px;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.switch-profile-btn:hover {
  background-color: #d32f2f;
}
