/* Layout khung ngoài */
.monft-wrap { margin: 12px 0; }
.monft-head { margin-bottom: 10px; }
.monft-original {margin-top:10px;}
.masterstudy-course-player-quiz {max-width: none;}
.monft-original h1 {
  display: none !important;
}
.masterstudy-online-testing .masterstudy-course-player-quiz-timer {margin-bottom:0px;}
/* Tabs */
.monft-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.monft-tab {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 10px;
  background: #f7f7f7;
  cursor: pointer;
  font-size: 13px;
}
.monft-tab.is-active {
  background: #eef2ff;
  border-color: #c7d2fe;
}

/* Grid 2 cột desktop */
.monft-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr; /* trái Passage | phải Câu hỏi */
  gap: 24px;
  align-items: start;
}

/* Cột trái: Passage */
.monft-passage-col {
  position: sticky;
  top: 72px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 16px;  
}
.monft-passage-panel {
  display: none;
  background: #fff;
  max-height: calc(100vh - 120px); /* chiều cao tối đa trên PC */
  overflow-y: auto;                /* scroll bên trong khung */
}
.monft-passage-panel.is-active { display: block; }
.monft-passage-title { margin: 0 0 8px; }

/* Cột phải: Câu hỏi của PASS đang mở */
/* ==== QUESTIONS ==== */
.monft-questions-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 16px;  
}

.monft-questions-panel {
  display: none;
  background: #fff;
  max-height: calc(100vh - 120px); /* chiều cao tối đa cho phần câu hỏi */
  overflow-y: auto;                /* scroll bên trong khung */
}
.monft-questions-panel.is-active { display: block; }

/* Đưa meta lên đầu, ngang hàng */
.monft-original .masterstudy-course-player-quiz__content-meta {
  display: flex;
  justify-content: space-between; /* dàn đều ngang */
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f9f9f9;
  list-style: none;
}

/* Xóa style mặc định của item */
.monft-original .masterstudy-course-player-quiz__content-meta-item {
  margin: 0 10px;
  font-size: 14px;
  color: #333;
}

/* Nút Start Quiz căn phải, cùng dòng */
.monft-original [data-id="start-quiz"] {
  margin-left: auto; /* đẩy nút sang phải */
}

/* Mobile */

@media (max-width: 991px){
  .monft-grid { grid-template-columns: 1fr; }
  .monft-passage-col {
    position: static;
    max-height: 40vh;
    overflow: auto;
  }
  .monft-questions-col {
    max-height: 55vh;
    overflow: auto;
  }
  .monft-original h1 {
  display: none !important;
  }
}
