body {
  font-family: 'Quicksand', sans-serif;
  background-color: #f0fdf4;
  /* Nền xanh pastel dịu mắt */
  color: #333;
}

/* Thẻ bọc danh sách truyện phong cách hoạt hình */
.kids-card {
  border: 4px solid #ffc107;
  border-radius: 20px;
  transition: transform 0.2s;
  background: #ffffff;
  cursor: pointer;
}

.kids-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.kids-title {
  color: #ff5722;
  font-weight: 700;
}

/* Khung hiển thị nội dung truyện */
.story-container {
  max-height: 50vh;
  overflow-y: auto;
  border: 4px dashed #00bac7;
  border-radius: 25px;
  background-color: #fff;
  padding: 30px;
  scroll-behavior: smooth;
}

/* Từng câu truyện */
.sentence {
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: #a0aec0;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: block;
}

/* Câu đang được phát tiếng và kích hoạt phát sáng */
.sentence.active {
  color: #e0115f;
  /* Màu hồng đậm */
  font-weight: 700;
  transform: scale(1.02);
  text-shadow: 0 0 10px rgba(224, 17, 95, 0.2);
}

/* Custom thanh cuộn cute */
.story-container::-webkit-scrollbar {
  width: 10px;
}

.story-container::-webkit-scrollbar-thumb {
  background: #00bac7;
  border-radius: 10px;
}