/* WRAPPER – giới hạn toàn bộ css trong shortcode */
#dailyRoutineWrap {
  max-width: 960px;
  margin: auto;
  padding: 24px 16px;
  font-family: Inter, Segoe UI, sans-serif;
  color: #1f2530;
  background: #f3f4f6;
}

/* HERO SECTION */
#dailyRoutineWrap .hero-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#dailyRoutineWrap #lessonTag {
  display: inline-block;
  background: #eaf0ff;
  color: #273880;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 18px;
  margin-bottom: 8px;
}

/* CONTENT BOX */
#dailyRoutineWrap .content-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#dailyRoutineWrap .section-block {
  margin-bottom: 36px;
}

#dailyRoutineWrap .section-title {
  background: #fff8f8;
  border-left: 4px solid #B62520;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: bold;
  color: #B62520;
  margin-bottom: 16px;
}

#dailyRoutineWrap .sentence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  #dailyRoutineWrap .sentence-grid {
    grid-template-columns: 1fr;
  }
}

#dailyRoutineWrap .sentence-item {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

#dailyRoutineWrap .phrase-wrap {
  font-weight: 600;
  color: #273880;
  font-size: 18px;
}

#dailyRoutineWrap .ipa {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

#dailyRoutineWrap .translation {
  color: #B62520;
  margin-top: 6px;
}

/* PLAY BUTTON */
#dailyRoutineWrap .vocab-buttons button {
  background: #273880;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#dailyRoutineWrap .vocab-buttons button:hover,
#dailyRoutineWrap .vocab-buttons button.active {
  background: #B62520;
}

/* PAGINATION */
#dailyRoutineWrap .pagination {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.lesson-header-title {
    text-align: center;
    margin: 20px 0 10px 0;
}

.lesson-header-title .lesson-title {
    font-size: 24px;
    font-weight: 700;
    color: #273880; /* Uspeak navy */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 10px 0;
}

@media (max-width: 768px) {
  #dailyRoutineWrap .pagination { display: flex; }
}

#dailyRoutineWrap .pagination button {
  background: #273880;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
}

#dailyRoutineWrap .pagination button.active {
  background: #B62520;
}
