/* LMS chrome and layout.
   Color/typeface themes: light.css / dark.css (#themeCss) override :root colors.
   Layout density lives here so every page stays uniform when a theme is swapped.

   Control contract:
   buttons = .btn
   text inputs / textareas = .form-control
   dropdowns = .form-select
   labels = .form-label
   tables = table.outer
   pages = .lms-page / .lms-home / .lms-practice / .lms-mycontent / .lms-selfexams */
:root {
  --strip-height: 34px;
  --status-height: 22px;
  --bg: #fcfcfc;
  --bg-elevated: #ffffff;
  --fg: #1a1a1a;
  --muted: #5c5c5c;
  --border: #e4e4e4;
  --accent: #3b7cff;
  --accent-fg: #ffffff;
  --nav-bg: #141414;
  --nav-fg: #c8c8c8;
  --nav-hover: #ececec;
  --nav-accent: #81a9ff;
  --input-bg: #ffffff;
  --input-border: #d0d0d0;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius: 4px;
  --font: ui-sans-serif, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-size: 15px;
  --font-style: normal;
  --font-weight: 400;
  --line-height: 1.45;
  --font-chrome: var(--font);
  --table-bg: #ffffff;
  --table-header-bg: #f4f4f2;
  --table-header-fg: #222222;
  --table-border: #ececec;
  --table-highlight: #f6f6f4;
  --table-sticky-bg: #f4f4f2;
  --table-frozen-bg: #f0f0ee;
  --table-row-alt: #fafafa;
  --table-font: var(--font);
  --table-font-size: var(--font-size);
  --table-cell-y: 4px;
  --table-cell-x: 8px;
  --table-header-weight: 600;
  --tone-error: var(--fg);
  --tone-ok: var(--fg);
  --tone-info: var(--fg);
  --tone-warn: var(--fg);
  --tone-muted: var(--muted);
  --stripe-a: var(--table-bg);
  --stripe-b: var(--table-bg);
  --stripe-sub: var(--table-bg);
  --stripe-done: var(--table-bg);
  --row-active: var(--table-bg);
  --ans-ok: var(--table-bg);
  --ans-bad: var(--table-bg);
  --weekend-bg: var(--table-bg);
  --space-1: 2px;
  --space-2: 4px;
  --space-3: 6px;
  --space-4: 8px;
  --space-5: 12px;
  --page-pad: 4px 8px;
  --page-gap: 4px;
  --toolbar-gap: 4px;
  --pane-gap: 6px;
  --block-pad: 4px 8px;
  --control-height: 30px;
  --control-pad-x: 8px;
  --control-pad-y: 2px;
  --accent-hover: #2f6ae8;
  --focus-ring: 0 0 0 2px rgba(0, 0, 0, 0.12);
  --tree-bg: #f2f2f2;
  --tree-line: #d8d8d8;
  --tree-sel-bg: var(--table-highlight);
  --tree-sel-fg: var(--fg);
  --tree-link: var(--fg);
  --tree-hover: #e8e8e8;
  --login-bg: var(--bg);
  --login-panel-bg: var(--bg-elevated);
  --login-panel-border: var(--border);
  --login-width: 360px;
}

html, body, * {
  scrollbar-width: thin;
  scrollbar-color: var(--muted) transparent;
}
html, body.lms-app {
  overflow-x: hidden;
}
::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar:horizontal,
*::-webkit-scrollbar:horizontal {
  height: 0;
  display: none;
}
::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 6px;
}

/* One typeface/size/style for LMS chrome and content text.
   Exceptions: Font Awesome, Monaco, CKEditor, KaTeX, Marathi, video cues. */
html, body.lms-app {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}
body.lms-app input,
body.lms-app select,
body.lms-app textarea,
body.lms-app button,
body.lms-app label,
body.lms-app td,
body.lms-app th,
body.lms-app li,
body.lms-app p,
body.lms-app a,
body.lms-app .form-label,
body.lms-app .errorMsg,
body.lms-app .successMsg,
body.lms-app .waitMsg,
body.lms-app .generalMessage,
body.lms-app .menuItem,
body.lms-app h5 {
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
}

/* --- main layout --- */
.inner1 {
  border-collapse: collapse;
  border-style: hidden;
  width: auto;
  max-width: 100%;
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  color: var(--fg);
  margin: 8px 12px 16px 0;
}
.inner1 td {
  padding: 0px;
  border: 1px solid var(--table-border);
}
.courseware td, th {
  padding-left: 12px;
  padding-right:12px;
  padding-top:0px;
  padding-bottom:0px;
}
.outer {
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  max-width: 100%;
  font-family: var(--table-font);
  font-size: var(--table-font-size);
  font-style: var(--font-style);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  color: var(--fg);
  background: var(--table-bg);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid var(--table-border);
  box-shadow: none;
}
.outer td {
  padding: var(--table-cell-y) var(--table-cell-x);
  border: none;
  border-bottom: 1px solid var(--table-border);
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  vertical-align: middle;
  line-height: var(--line-height);
}
.outer th {
  padding: var(--table-cell-y) var(--table-cell-x);
  font-family: var(--table-font);
  font-size: var(--table-font-size);
  font-style: var(--font-style);
  font-weight: var(--table-header-weight);
  line-height: var(--line-height);
  color: var(--table-header-fg);
  background: var(--table-header-bg);
  border: none;
  border-bottom: 1px solid var(--table-border);
  position: sticky;
  top: 0;
  z-index: 10;
  text-align: left;
}
.outer thead {
  border-style: none;
}
.outer li {
  padding: 0px;
  margin: 10px;
}
.outer ans {
  padding: 0px;
  border: 1px solid var(--table-border);
  text-align: center;
}
.tableFixHead {
  overflow-x: hidden;
  overflow-y: auto;
  height: 90vh;
}
.tableFixHead thead {
  position: sticky;
  top: 0;
}
table.schedule,
table.scheduleSummary {
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  color: var(--fg);
  background: var(--table-bg);
}
table.schedule col.sch-col-hour { width: 3em; }
table.schedule col.sch-col-day { width: auto; }
table.scheduleSummary col.sch-sum-subject { width: 52%; }
table.scheduleSummary col.sch-sum-n { width: 16%; }
.schedule td,
.scheduleSummary td,
.scheduleSummary th {
  border: 1px solid var(--table-border);
  border-color: var(--table-border);
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  font-style: var(--font-style) !important;
  min-width: 0;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}
.scheduleSummary th,
.scheduleSummary td:first-child {
  text-align: left;
}
.scheduleSummary td:first-child {
  white-space: normal;
  overflow-wrap: anywhere;
}
.txtAnsDiv {
  width: 100%;
  min-height: 50px;
  height: auto;
  border: none;
  color: var(--fg);
}
.topicheading {
  color: var(--fg);
}
.code {
  background-color: var(--table-header-bg);
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  line-height: 22px;
  padding: 10px;
  margin: 5px;
  color: var(--fg);
}
.mybullet {
  list-style-type: circle;
  list-style: disc;
  padding-left: 20px
}
.subtopicheading{
  font-weight:bold;
}
.selectOptions{
  min-width: 200px;
}
.sidenav {
  height: 100%;
  width: 14.5%;
  position: fixed;
  z-index: 21;
  top: 0;
  left: 0;
  background-color: var(--bg-elevated);
  overflow: visible;
  padding-top: 0px;
  border-right: 1px solid var(--border);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.lms-sidenav-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  width: 100%;
  overflow: visible;
}
.lms-sidenav-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 34px;
  margin: 0;
  padding: 6px 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font);
  font-size: var(--font-size);
  font-weight: var(--table-header-weight);
  line-height: 1.35;
  color: var(--fg);
  white-space: nowrap;
}
#divTreeMenu {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.sidenav > div {
  float: none !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  overflow: visible !important;
}
.main {
  font-size: var(--font-size);
  font-family: var(--font);
  font-style: var(--font-style);
  margin-left: 14.5% !important;
  width: 85.5% !important;
  height: 100vh !important;
  max-width: 85.5%;
  background-color: var(--bg);
  color: var(--fg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 !important;
}
.lms-status {
  display: none;
  flex: 0 0 var(--status-height);
  height: var(--status-height);
  min-height: var(--status-height);
  max-height: var(--status-height);
  box-sizing: border-box;
  align-items: center;
  padding: 0 12px;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--muted);
  z-index: 20;
}
body.lms-signed-in .lms-status {
  display: flex;
}
.lms-status__text {
  display: block;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font);
  font-size: var(--font-size);
  line-height: 1.2;
}
.lms-status.is-ok,
.lms-status.is-ok .lms-status__text {
  color: var(--tone-ok);
}
.lms-status.is-error,
.lms-status.is-error .lms-status__text {
  color: var(--tone-error);
}
.lms-status.is-wait,
.lms-status.is-wait .lms-status__text {
  color: var(--tone-info);
}
.page {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
#Schedule.page {
  overflow-x: hidden;
  overflow-y: auto;
}
#Courseware_new.page,
#Courseware.page {
  overflow: hidden;
}
.lms-crswr {
  display: flex;
  height: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}
.lms-crswr__main {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lms-crswr__nav {
  flex: 0 0 22%;
  max-width: 280px;
  min-width: 180px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  border-left: 1px solid var(--tree-line);
  background: var(--tree-bg);
}
.lms-crswr__nav .lms-select {
  flex: 0 0 var(--strip-height);
  height: var(--strip-height);
  box-sizing: border-box;
  border-bottom: 1px solid var(--border);
}
.lms-crswr__nav .lms-select__btn {
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: var(--bg-elevated) !important;
  box-shadow: none !important;
}
#leftTopics_clsCrswr {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto !important;
}
#qpTabs {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}
.lms-crswr__tabs {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}
.lms-crswr__pane.container,
.lms-crswr__pane {
  max-width: none !important;
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
  padding: 8px 12px !important;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
#divMyNotes_clsCrswr.lms-crswr__pane {
  overflow: hidden;
}
.lms-empty {
  color: var(--muted);
  padding: var(--space-5) var(--space-3);
  text-align: center;
  font-family: var(--font);
  font-size: var(--font-size);
}
.lms-empty--wait { color: var(--fg); }
.lms-empty--error { color: var(--tone-error); }
.lms-ppt-carousel { height: 85vh; }
.lms-ppt-carousel .carousel-indicators {
  margin: auto;
  opacity: 0.6;
}
.lms-query {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}
.lms-query__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.lms-query__label {
  color: var(--fg);
  font-weight: 500;
  margin: 0;
}
.lms-query__count { color: var(--muted); }
.lms-query textarea.form-control { width: 100%; }
.lms-notes-pdf {
  margin: 0 0 var(--space-4) 0;
}
img, video, embed, iframe {
  max-width: 100%;
}
.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--muted);
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-family: var(--font);
  font-style: var(--font-style);
}
.sidenav a:hover, .dropdown-btn:hover {
  color: var(--fg);
}
.active {
  color: black
}
.dropdown-container {
  display: none;
  padding-left: 8px;
}
.fa-caret-down {
  float: right;
  padding-right: 8px;
}
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
}
table .vivaEvaluation{
  min-width: none;
  background-color: blueviolet;
  color: aqua;
}
#ansSheetTable td{
  text-align: center;
  vertical-align: middle;
  padding: 5px;
}
.securedDiv {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.back-to-top {
  position: fixed;
  bottom: 10px;
  right: 15px;
  display: none;
}
.compactHr{
  margin-top:0;
  margin-bottom: 0px;
  border: 0;
  border-top: 1px solid var(--border);
  opacity: 1;
}
hr{
  margin-top:5px;
  margin-bottom: 5px;
}
h5 {
  color:gray;
}
.tooltip-inner {
  background-color:gray;
  color:white;
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  opacity: 70%;
}
.menuItem{
  padding: 5px 15px;
  color:#E9E9E9;
  cursor: pointer;
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
}
#questionPaperTable tr > *:nth-child(n+4) {
  display: none;
}
#questionPaperTable td{
  word-break: break-word;
}
.tooltip-inner {
  max-width: auto;
  color: black;
  background-color: whitesmoke;
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
}
.frac {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  letter-spacing: 0.001em;
  text-align: center;
}
.frac > span {
    display: block;
    padding: 0.1em;
}
.frac span.bottom {
    border-top: thin solid black;
}
.frac span.symbol {
    display: none;
    font-family:tah;
}
.marathiContent{
  font-family: 'sarala';
  font-size:16px;
  font-weight: 100;
  line-height:28px;
  padding:4px;
  margin:4px;
  color: #373737;
}
.englishContent{
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
}
p{
  padding: 2px;
  margin-bottom: 2px;
}

.myInlineDecoration {  background: #EDEDED; display: inline-block;}

.evalFeedback{
  margin: 5px 12px 5px 12px;
  height: 18px;
  width: 18px;
  vertical-align: middle;
}
.reportTable{
  border-color: var(--table-border);
  border: 0em;
  width: auto;
  max-width: 100%;
  margin: 8px 12px 16px 0;
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  color: var(--fg);
}
.reportTable .selectUser{
  margin:0px 3px 2px 0px;
  zoom: 1.35;
  vertical-align: middle;
}
.reportTable .headerRow{
  position: sticky;
  top: 0px;
  z-index:5;
  background-color: var(--table-header-bg);
  color: var(--table-header-fg);
  text-align:center;
  vertical-align: middle;
  white-space: nowrap;
}
.reportTable .headerRow2{
  position: sticky;
  top: 36px;
  z-index: 5;
  background-color: var(--table-header-bg);
  color: var(--table-header-fg);
  vertical-align:middle;
  text-align:center;
  white-space: nowrap;
}
.reportTable .headerRow3{
  position: sticky;
  top: 72px;
  z-index: 4;
  background-color: var(--table-header-bg);
  color: var(--table-header-fg);
  vertical-align:middle;
  text-align:center;
  white-space: nowrap;
}
.reportTable .headerRow th{
  vertical-align:middle;
  text-align:center;
}
.reportTable .headerRow2 th{
  vertical-align:middle;
  text-align:center;
}
.reportTable .headerRow3 th{
  vertical-align:middle;
  text-align:center;
}

.reportTable .footerRow{
  position: sticky;
  bottom: 0px;
  z-index: 3;
  background-color: var(--table-header-bg);
  color: var(--table-header-fg);
  text-align: center;
}
.reportTable .firstColumn{
  position: sticky;
  left: 0px;
  z-index: 1;
  min-width: 60px;
  vertical-align: middle;
  text-align: center;
  background-color: var(--table-frozen-bg);
}
.reportTable .lastColumn{
  position: sticky;
  right: 0px;
  z-index: 1;
  background-color: var(--table-frozen-bg);
}
.reportTable .valueCell{
  background-color: var(--table-bg);
}
.reportTable .titleCell{
  background-color: var(--table-row-alt);
}
.reportTable th{
  background-color: var(--table-header-bg);
  color: var(--table-header-fg);
  font-weight: 500;
  padding: 05px 05px 05px 05px;
  vertical-align: middle;
}
.reportTable td{
  padding: 05px 05px 05px 05px;
  vertical-align: middle;
  text-align: center;
}
.reportTable thead th {
  border-top: none;
  border-bottom: none;
}
.spellingWord{
  visibility: hidden;
  font-size: var(--font-size);
}
.treeview .list-group-item {
  cursor: pointer;
  font-size: var(--font-size);
  font-family: var(--font);
  font-style: var(--font-style);
}
.treeview span.indent {
  margin-left: 5px;
  margin-right: 10px;
}
.treeview span.icon {
  width: 12px;
  margin-right: 5px
}
.treeview .node-disabled {
  color: silver;
  cursor: not-allowed
}
.node-leftTopics_clsCoursewareNew {
padding: 3px 3px 3px 10px;
font-size: var(--font-size);
font-family: var(--font);
}
.node-leftTopics_clsContent {
padding: 3px 3px 3px 10px;
font-size: var(--font-size);
font-family: var(--font);
}
.node-leftTopics_clsCoursewareNew:not(.node-disabled):hover {
  background-color: #F5F5F5;
}
.node-leftTopics_clsContent:not(.node-disabled):hover {
  background-color: #F5F5F5;
}
.frac {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  letter-spacing: 0.001em;
  text-align: center;
}
  .frac > span {
      display: block;
      padding: 0.1em;
  }
  .frac span.bottom {
      border-top: thin solid black;
  }
  .frac span.symbol {
      display: none;
  }


.frac1{
display:inline-block;
font-family:courier;
font-size:15px;
}
.numer {
display: inline-block;
position: relative;
vertical-align: middle;
text-align: center;
margin-left:3px;
}
.denom {
  display: block;
border-top: thin solid black;
}
.updownSort{
  width:20px
}
.lms-home {
  display: flex;
  align-items: flex-start;
  gap: var(--page-gap);
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: var(--page-pad);
  overflow: auto;
  background: var(--bg);
}
.lms-home__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--page-gap);
  flex: 1 1 auto;
  min-width: 0;
}
.lms-home__block {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: var(--block-pad);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.lms-home__block-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 0 var(--space-2) 0;
  color: var(--muted);
  font-family: var(--font);
  font-size: var(--font-size);
  font-weight: var(--table-header-weight);
  line-height: var(--line-height);
}
.lms-home__block-title i {
  width: 1em;
  text-align: center;
}
.lms-home__table {
  max-width: 100%;
  overflow-x: hidden;
}
.lms-home table.outer {
  width: 100%;
  max-width: 100%;
  margin: 0;
  table-layout: fixed;
  border-color: var(--table-border);
}
.lms-home table.outer col.lms-sch-no { width: 2.5em; }
.lms-home table.outer col.lms-sch-time { width: 11em; }
.lms-home table.outer col.lms-sch-title { width: auto; }
.lms-home table.outer col.lms-sch-who { width: 8em; }
.lms-home table.outer td,
.lms-home table.outer th {
  word-break: normal;
  overflow-wrap: anywhere;
  white-space: normal;
  vertical-align: middle;
}
.lms-home table.outer td.lms-cell-text {
  white-space: normal;
  min-width: 0;
}
.lms-home table.outer tr.highlighted td {
  background: var(--table-header-bg);
  color: var(--table-header-fg);
  white-space: nowrap;
}
.lms-ccpp {
  flex: 0 0 auto;
  width: 160px;
  box-sizing: border-box;
  margin: 0;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
}
.lms-ccpp__kicker {
  font-family: var(--font);
  font-size: var(--font-size);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-2) 0;
}
.lms-ccpp__value {
  font-family: var(--font);
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  overflow-wrap: break-word;
}
.lms-ccpp__caption {
  font-family: var(--font);
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--muted);
  margin-top: var(--space-2);
}

/* Sidebar menu: quiet rows, aligned labels, accent on current page */
.tree-leaf { position: relative; margin: 0; }
.tree-leaf .tree-child-leaves { display: block; margin: 0; padding: 0; }
.tree-leaf .hidden { display: none; visibility: hidden; }
#divTreeMenu {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font);
  font-size: var(--font-size);
  color: var(--fg);
  background: transparent;
  padding: 0 0 8px;
}
#divTreeMenu .tree-leaf-content {
  display: flex !important;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  min-height: 34px;
  margin: 0;
  padding: 6px 14px;
  border: none;
  background: transparent;
  cursor: pointer;
}
#divTreeMenu .tree-leaf-content:hover {
  background: var(--table-highlight);
}
#divTreeMenu .tree-expando {
  float: none;
  position: static;
  display: inline-block;
  flex: 0 0 1.1em;
  width: 1.1em;
  height: auto;
  top: auto;
  margin: 0 8px 0 0;
  padding: 0;
  line-height: 1;
  text-align: center;
  color: var(--muted);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  opacity: 0.7;
}
#divTreeMenu .tree-expando.hidden {
  display: inline-block;
  visibility: hidden;
}
#divTreeMenu .tree-leaf-text {
  float: none;
  margin: 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  font-weight: 400;
  line-height: 1.35;
  color: var(--fg) !important;
}
#divTreeMenu .tree-child-leaves {
  background: transparent;
}
#divTreeMenu .tree-child-leaves > .tree-leaf > .tree-leaf-content {
  padding-left: 2.3em;
}
#divTreeMenu .tree-child-leaves .tree-leaf-text {
  color: var(--muted) !important;
}
#divTreeMenu .tree-leaf-content:has(.tree-leaf-text[style*="yellow"]) {
  background: var(--table-highlight) !important;
  box-shadow: inset 3px 0 0 var(--accent);
}
#divTreeMenu .tree-leaf-content:has(.tree-leaf-text[style*="yellow"]) .tree-leaf-text {
  color: var(--fg) !important;
  font-weight: 500 !important;
}
#divTreeMenu .tree-leaf-content:has(.tree-leaf-text[style*="yellow"]) .tree-expando {
  color: var(--fg) !important;
  opacity: 0.85;
}

/* Courseware topic tree: compact +/- list, selected row, link-style subtopics */
.lms-tree {
  font-family: var(--font);
  font-size: var(--font-size);
  color: var(--fg);
  background: var(--tree-bg);
}
.lms-tree__group {
  border: none;
}
.lms-tree__topic {
  display: flex !important;
  align-items: center;
  width: 100%;
  box-sizing: border-box !important;
  height: auto !important;
  min-height: 32px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 6px 10px !important;
  border: none !important;
  border-bottom: 1px solid var(--tree-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--fg) !important;
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  text-align: left;
  cursor: pointer;
  box-shadow: none !important;
}
.lms-tree__topic:hover {
  background: var(--tree-hover) !important;
}
.lms-tree .tree-header::before,
.lms-tree__topic::before {
  content: "+" !important;
  display: inline-block;
  width: 1.1em;
  margin-right: 6px;
  color: var(--muted);
  flex: 0 0 auto;
  font-family: var(--font);
  font-weight: 400;
  line-height: 1;
  border: none !important;
  height: auto !important;
  transform: none !important;
}
.lms-tree__group.is-open > .lms-tree__topic::before,
.lms-tree .tree-header.expanded::before {
  content: "−" !important;
  transform: none !important;
  margin-top: 0 !important;
}
.lms-tree__topic.is-selected,
.lms-tree__topic.active,
.lms-tree .tree-header.is-selected,
.lms-tree .tree-header.active {
  background: var(--tree-sel-bg) !important;
  color: var(--tree-sel-fg) !important;
  box-shadow: none !important;
}
.lms-tree__topic.is-selected::before,
.lms-tree__topic.active::before,
.lms-tree .tree-header.is-selected::before,
.lms-tree .tree-header.active::before {
  color: var(--tree-sel-fg) !important;
}
.lms-tree__subs,
.lms-tree .tree-children {
  display: none;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: var(--bg-elevated);
}
.lms-tree__group.is-open > .lms-tree__subs,
.lms-tree__subs:not([hidden]) {
  display: block;
}
.lms-tree__sub {
  display: flex !important;
  align-items: center;
  width: 100%;
  box-sizing: border-box !important;
  height: auto !important;
  min-height: 36px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 8px 10px !important;
  border: none !important;
  border-bottom: 1px solid var(--tree-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--tree-link) !important;
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none !important;
}
.lms-tree__sub::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px 0 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.4;
}
.lms-tree__sub:hover {
  text-decoration: underline;
  background: var(--tree-hover) !important;
  color: var(--tree-link) !important;
}
.lms-tree__sub.is-selected,
.lms-tree__sub.active {
  background: transparent !important;
  color: var(--tree-link) !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}
.lms-tree__empty {
  color: var(--muted);
  padding: 8px;
}
.treeview-container {
  max-width: none;
  min-width: 0;
}
.treeview {
  height: auto;
  overflow: visible;
  border: none;
  background: transparent;
  padding: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--font-size);
  font-style: var(--font-style);
  color: var(--fg);
}
.tree-parent {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.tree-parent:last-child { border-bottom: none; }
.tree-header,
.child-node {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: var(--control-height);
  margin: 0;
  padding: 0 var(--space-2);
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  font-weight: 400;
  line-height: 1.3;
}
.tree-header:hover,
.child-node:hover {
  background: var(--table-highlight);
  color: var(--fg);
}
.tree-header::before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-right: var(--space-2);
  flex: 0 0 auto;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(-45deg);
}
.tree-header.expanded::before {
  content: "";
  transform: rotate(45deg);
  margin-top: -2px;
}
.tree-children {
  margin: 0 0 0 var(--space-3);
  padding: 0 0 var(--space-1) var(--space-2);
  border-left: 1px solid var(--border);
}
.child-node:last-child { border-bottom: none; }
.disabled-node { opacity: 0.45; cursor: not-allowed; }
.tree-header.is-selected,
.tree-header.active,
.child-node.is-selected,
.child-node.active,
.tree-children.active {
  background: var(--table-highlight);
  color: var(--fg);
  box-shadow: inset 2px 0 0 var(--accent);
}

[data-tooltip]:hover::after {
  display: block;
  position: absolute;
  content: attr(data-tooltip);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: .25em;
  margin-top: 10px;
  border-radius: var(--radius);
  color: var(--fg);
  font-size: var(--font-size);
  font-family: var(--font);
  box-shadow: var(--shadow);
}

/* --- Cursor-like chrome (shell, controls, dialogs). Schedule cell fill colors stay in page JS. --- */
#displayname[hidden] {
  display: none !important;
}
.lms-topbar {
  display: none;
  flex: 0 0 var(--strip-height);
  height: var(--strip-height);
  min-height: var(--strip-height);
  max-height: var(--strip-height);
  box-sizing: border-box;
  align-items: stretch;
  min-width: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--fg);
}
body.lms-signed-in .lms-topbar {
  display: flex;
}
.lms-topbar__nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: var(--toolbar-gap);
  padding: 0 var(--space-3);
  font-family: var(--font);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--fg);
}
.lms-topbar__status {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lms-topbar__account {
  position: relative;
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  box-sizing: border-box;
}
.lms-account.is-on {
  display: flex;
}
.lms-signed-in #displayname {
  display: none;
}
.lms-account__menu {
  display: none;
  position: fixed;
  top: var(--strip-height);
  right: 0;
  z-index: 40;
  min-width: 10em;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}
#lmsAccount.is-open .lms-account__menu {
  display: block;
}
body.lms-app .lms-topbar .lms-account__icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: var(--toolbar-gap);
  width: auto !important;
  height: var(--strip-height) !important;
  min-height: var(--strip-height) !important;
  max-height: var(--strip-height) !important;
  margin: 0 !important;
  padding: 0 var(--space-3) !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--fg) !important;
  font-size: var(--font-size) !important;
  line-height: 1 !important;
  cursor: pointer;
}
.lms-account__name {
  max-width: 14em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font);
  font-size: var(--font-size);
  color: var(--fg);
}
body.lms-app .lms-topbar button.lms-account__icon:hover,
body.lms-app .lms-topbar button.lms-account__icon:focus,
#lmsAccount.is-open .lms-account__icon {
  background: var(--table-highlight) !important;
  color: var(--fg) !important;
  box-shadow: none !important;
  outline: none;
}
body.lms-app .lms-topbar .lms-account__menu-item {
  display: flex !important;
  align-items: center;
  gap: var(--toolbar-gap);
  width: 100%;
  margin: 0 !important;
  padding: 0 var(--space-4) !important;
  height: var(--strip-height) !important;
  min-height: var(--strip-height) !important;
  max-height: var(--strip-height) !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--fg) !important;
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  text-align: left;
  cursor: pointer;
}
body.lms-app .lms-topbar .lms-account__menu-item:hover,
body.lms-app .lms-topbar .lms-account__menu-item:focus {
  background: var(--table-highlight) !important;
  color: var(--fg) !important;
  outline: none;
}
#imgLogo {
  background-color: #f7f7f7 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  border-radius: 0;
}
.btn,
.btn-primary, .btn-secondary, .btn-info, .btn-success, .btn-danger, .btn-warning, .btn-light, .btn-dark, .btn-link,
.btn-outline-primary, .btn-outline-secondary, .btn-outline-info, .btn-outline-success,
.btn-outline-danger, .btn-outline-warning, .btn-outline-light, .btn-outline-dark {
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  font-weight: 400;
  border-radius: var(--radius);
  padding: var(--control-pad-y) var(--control-pad-x);
  min-height: var(--control-height);
  line-height: 1.2;
  box-shadow: none;
  background-color: var(--bg-elevated);
  border: 1px solid var(--input-border);
  color: var(--fg);
}
.btn:hover, .btn:focus, .btn:active,
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
.btn-info:hover, .btn-info:focus, .btn-info:active,
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active,
.btn-success:hover, .btn-success:focus, .btn-success:active,
.btn-danger:hover, .btn-danger:focus, .btn-danger:active,
.btn-warning:hover, .btn-warning:focus, .btn-warning:active,
.btn-light:hover, .btn-light:focus, .btn-light:active,
.btn-dark:hover, .btn-dark:focus, .btn-dark:active,
.btn-outline-primary:hover, .btn-outline-info:hover, .btn-outline-secondary:hover,
.btn-outline-success:hover, .btn-outline-danger:hover, .btn-outline-warning:hover {
  background-color: var(--table-highlight);
  border-color: var(--input-border);
  color: var(--fg);
  box-shadow: none;
}
.form-control, .form-select {
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  font-weight: var(--font-weight);
  color: var(--fg);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  box-shadow: none;
  min-height: var(--control-height);
  padding: var(--control-pad-y) var(--control-pad-x);
}
.form-control:focus, .form-select:focus {
  color: var(--fg);
  background-color: var(--input-bg);
  border-color: var(--input-border);
  box-shadow: var(--focus-ring);
}
.form-label {
  color: var(--muted);
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  font-weight: 400;
  margin-bottom: var(--space-1);
}
.modal-content {
  background-color: var(--bg-elevated);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.modal-footer {
  border-top: 1px solid var(--border);
}
.modal-body {
  color: var(--fg);
  font-family: var(--font);
  font-size: var(--font-size) !important;
  font-style: var(--font-style);
}
.nav-tabs {
  border-bottom: 1px solid var(--border);
}
.nav-tabs .nav-link {
  color: var(--muted);
  border: none;
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  font-weight: 400;
}
.nav-tabs .nav-link.active {
  color: var(--fg);
  background: transparent;
  font-weight: 500;
}
hr {
  border-color: var(--border);
  opacity: 1;
}
.ui-autocomplete {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
}

/* --- Generated UI (no inline styles in page JS) --- */
.lms-tone-error, .lms-tone-error span { color: var(--tone-error); }
.lms-tone-ok, .lms-tone-ok span { color: var(--tone-ok); }
.lms-tone-info, .lms-tone-info span { color: var(--tone-info); }
.lms-tone-warn, .lms-tone-warn span { color: var(--tone-warn); }
.lms-tone-muted, .lms-tone-muted span { color: var(--tone-muted); }
.lms-tone-accent, .lms-tone-accent span { color: var(--accent); }
.errorMsg { color: var(--tone-error); }
.successMsg { color: var(--tone-ok); }
.waitMsg { color: var(--tone-info); }

.lms-hide { display: none; }
.lms-inline { display: inline; }
.lms-inline-block { display: inline-block; }
.lms-ta-c { text-align: center; }
.lms-ta-l { text-align: left; }
.lms-ta-r { text-align: right; }
.lms-va-m { vertical-align: middle; }
.lms-va-t { vertical-align: top; }
.lms-va-b { vertical-align: text-bottom; }
.lms-nowrap { white-space: nowrap; }
.lms-td-num { text-align: center; white-space: nowrap; }
.lms-fl { float: left; }
.lms-fr { float: right; }
.lms-clear { overflow: hidden; }
.lms-w-full { width: 100%; }
.lms-w-auto { width: auto; }
.lms-h-full { height: 100%; }
.lms-h-auto { height: auto; }
.lms-scroll { overflow-x: hidden; overflow-y: auto; }
.lms-scroll-all { overflow-x: hidden; overflow-y: auto; }
.lms-flush { padding: 0; margin: 0; }
.lms-pad-0 { padding: 0; }
.lms-pad-1 { padding: 5px; }
.lms-pad-2 { padding: 8px 12px; }
.lms-m-0 { margin: 0; }
.lms-m-1 { margin: 5px; }
.lms-m-2 { margin: 10px; }
.lms-mt-1 { margin-top: 5px; }
.lms-mt-2 { margin-top: 10px; }
.lms-mb-1 { margin-bottom: 10px; }
.lms-ml-1 { margin-left: 5px; }
.lms-ml-2 { margin-left: 10px; }
.lms-mr-1 { margin-right: 5px; }
.lms-mr-2 { margin-right: 10px; }
.lms-no-shadow { box-shadow: none; }
.lms-no-border { border: none; }
.lms-cols { width: 100%; overflow: hidden; }
.lms-col { box-sizing: border-box; }
.lms-col-3 { width: 3%; float: left; }
.lms-col-5 { width: 5%; float: left; }
.lms-col-8 { width: 8%; }
.lms-col-10 { width: 10%; }
.lms-col-20 { width: 20%; float: left; }
.lms-col-25 { width: 25%; float: left; }
.lms-col-30 { width: 30%; float: left; }
.lms-col-36 { width: 36%; float: left; }
.lms-col-40 { width: 40%; float: left; }
.lms-col-45 { width: 45%; float: left; }
.lms-col-47 { width: 47%; float: left; }
.lms-col-50 { width: 50%; float: left; }
.lms-col-55 { width: 55%; float: left; }
.lms-col-58 { width: 58%; float: left; }
.lms-col-60 { width: 60%; float: left; }
.lms-col-70 { width: 70%; float: right; }
.lms-col-75 { width: 75%; float: left; }
.lms-col-80 { width: 80%; float: left; }
.lms-col-98 { width: 98%; }
.lms-col-99 { width: 99%; float: left; }
.lms-col-fr-5 { width: 5%; float: right; }
.lms-col-fr-17 { width: 17%; float: right; }
.lms-col-fr-25 { width: 25%; float: right; }
.lms-col-fr-30 { width: 30%; float: right; }
.lms-col-fr-50 { width: 50%; float: right; }
.lms-col-fr-70 { width: 70%; float: right; }
.lms-vh-73 { min-height: 73vh; }
.lms-vh-80 { height: 80vh; }
.lms-vh-82 { height: 82vh; }
.lms-vh-84 { height: 84vh; }
.lms-vh-85 { min-height: 85vh; }
.lms-vh-87 { height: 87vh; }
.lms-vh-88 { height: 88vh; }
.lms-vh-89 { height: 89vh; }
.lms-vh-90 { height: 90vh; }
.lms-vh-92 { min-height: 92vh; }
.lms-vh-93 { height: 93vh; }
.lms-vh-95 { height: 95%; }
.lms-h-6p { height: 6%; }
.lms-h-7p { height: 7%; }
.lms-h-10p { height: 10%; }
.lms-minh-page { min-height: 73vh; margin-top: 10px; width: 100%; }

.lms-stripe-a { background-color: var(--stripe-a); }
.lms-stripe-b { background-color: var(--stripe-b); }
.lms-stripe-sub { background-color: var(--stripe-sub); }
.lms-stripe-done { background-color: var(--stripe-done); }
.lms-row-active { background-color: var(--row-active); }
.lms-is-locked { color: var(--accent); }
.lms-day-weekend { background: var(--weekend-bg); }
.lms-score-low { color: var(--tone-error); }
.lms-score-mid { color: var(--tone-ok); }
.lms-score-high { color: var(--tone-info); }
.lms-ans-ok { background-color: var(--ans-ok); }
.lms-ans-bad { background-color: var(--ans-bad); }
.lms-source-mark {
  float: right;
  font-size: var(--font-size);
  font-style: italic;
  color: var(--muted);
  padding: 3px 3px 0 0;
}
.lms-icon-verified {
  float: right;
  width: 15px;
  height: 15px;
}
.lms-feedback-reason {
  height: 35px;
  float: left;
  width: 35%;
}
.lms-panel {
  border-radius: 10px;
  width: 98%;
  margin: 5px;
  padding: 1px;
}
.lms-panel-lg { height: 150px; }
body.lms-app:not(.lms-signed-in) .sidenav {
  display: none;
}
body.lms-app:not(.lms-signed-in) .main {
  margin-left: 0 !important;
  width: 100% !important;
  max-width: 100%;
}
#ConfirmLogout.page,
#Logout.page {
  padding: 0;
  overflow: hidden;
  height: 100% !important;
}
body.lms-app:not(.lms-signed-in) #ConfirmLogout.page {
  height: 100% !important;
}
.lms-login,
.lms-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: var(--space-5);
  float: none;
  box-sizing: border-box;
  background: var(--login-bg);
}
.lms-login__panel,
.lms-logout__panel {
  width: 100%;
  max-width: var(--login-width);
  margin: 0;
  padding: var(--space-5);
  box-sizing: border-box;
  background: var(--login-panel-bg);
  border: 1px solid var(--login-panel-border);
  border-radius: var(--radius);
}
.lms-logout__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 var(--space-3) 0;
  color: var(--muted);
  font-size: 18px;
}
.lms-logout__message {
  margin: 0 0 var(--space-4) 0;
  text-align: center;
  color: var(--fg);
  font-family: var(--font);
  font-size: var(--font-size);
}
.lms-logout__actions {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: var(--space-2);
}
.lms-logout__actions .btn {
  flex: 1 1 0;
}
.lms-login__field {
  margin: 0 0 var(--space-3) 0;
}
.lms-login__field .lms-select,
.lms-login__field .form-control,
.lms-login__field .form-select {
  width: 100%;
}
.lms-login__submit {
  width: 100%;
}
.lms-login__status {
  margin: var(--space-3) 0 0 0;
  min-height: 1.2em;
}
.lms-menu-scroll {
  float: left;
  width: 98%;
  overflow-y: auto;
  height: 90vh;
}
.lms-license-msg { margin: 10px; }
.lms-invalid-license { margin: 10px; }
.lms-results-host { width: 100%; float: left; margin-left: 5px; }
.lms-prn-filter { width: 80%; float: left; margin: 0; }
.lms-upload-row { width: 55%; float: left; }
.lms-upload-progress { width: 20%; float: left; }
.lms-upload-progress .progress-bar {
  height: 20px;
  margin-top: 5px;
  float: left;
}
.lms-upload-msg { width: 25%; margin-top: 5px; float: right; }
.lms-upload-meta { width: 100%; margin-top: 0; float: left; }
.lms-upload-window { color: var(--tone-info); float: left; width: 60%; }
.lms-sample-sol { color: var(--tone-warn); width: 25%; float: right; cursor: pointer; }
.lms-spelling-input {
  width: 100%;
  padding-left: 5px;
  margin: 0;
  border: 0;
  background-color: var(--stripe-a);
}
.lms-id { color: var(--tone-info); }
.queryRecords-table {
  border-collapse: collapse;
  width: auto;
}
.queryRecords-table td,
.queryRecords-table th {
  border: 1px solid var(--table-border);
  padding: 3px;
}
#imgLogo {
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: var(--bg-elevated);
}
#imgLogo.lms-logo-ipat {
  border-right: 1px solid var(--border);
}
.lms-progress {
  height: 20px;
}
.lms-media {
  border-radius: 10px;
}
.lms-media-clip {
  border-radius: 10px;
  height: 150px;
  padding: 1px;
}
.lms-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.lms-center-block {
  margin: auto;
}
.lms-h-70vh { height: 70vh; }
.lms-h-58vh { height: 58vh; }
.lms-h-24vh { height: 24vh; }
.lms-h-620 { height: 620px; }
.lms-col-29 { width: 29%; float: right; }
.lms-w-120 { width: 120px; }
.lms-w-75 { width: 75px; }
.lms-w-65 { width: 65px; }
.lms-w-130 { width: 130px; }
.lms-w-250 { width: 250px; }
.lms-w-400 { width: 400px; }
.lms-w-50px { width: 50px; }
.lms-output-pane {
  height: 24vh;
  background-color: var(--stripe-a);
  color: var(--muted);
}
.lms-arith {
  font-size: 19px;
  width: auto;
  margin: auto;
}
.lms-spell-cell { padding: 0; }
.lms-h-10 { height: 10px; }
.lms-pr-2 { padding-right: 20px; }

.lms-video-section {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  margin-bottom: 8px;
}
.lms-video-group-bar {
  border-bottom: 1px solid var(--border);
}
.lms-video-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--fg);
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}
.lms-video-group:hover,
.lms-video-group:focus {
  background: var(--table-highlight);
  color: var(--fg);
  box-shadow: none;
}
.lms-video-group__name {
  color: var(--fg);
}
.lms-video-group__count {
  color: var(--muted);
  flex-shrink: 0;
}
.lms-video-list {
  padding: 8px 12px 16px;
}
.lms-video-block {
  margin: 0 0 18px 0;
}
.lms-video-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 8px 0;
  padding: 0 0 6px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font);
  font-size: var(--font-size);
  font-style: var(--font-style);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.lms-video-title__index {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 1.25em;
}
.lms-video-title__text {
  color: var(--fg);
}

/* Courseware Notes: one typeface/size/color. Beats knowit.css + Word inline styles. */
#divNotes_clsCrswr.lms-notes,
#divNotes_clsCrswr.lms-notes .courseware,
#divNotes_clsCrswr.lms-notes .courseware.topic,
#divNotes_clsCrswr.lms-notes .courseware.subtopic,
#divNotes_clsCrswr.lms-notes .courseware.subsubtopic,
#divNotes_clsCrswr.lms-notes .courseware.content,
#divNotes_clsCrswr.lms-notes .courseware.subcontent,
#divNotes_clsCrswr.lms-notes .courseware.summary,
#divNotes_clsCrswr.lms-notes .topicheading,
#divNotes_clsCrswr.lms-notes .subtopicheading,
#divNotes_clsCrswr.lms-notes .leftDiv,
#divNotes_clsCrswr.lms-notes .rightDiv {
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  font-style: var(--font-style) !important;
  font-weight: 400 !important;
  color: var(--fg) !important;
  background: transparent !important;
  line-height: 1.45;
}
#divNotes_clsCrswr.lms-notes * {
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  font-style: var(--font-style) !important;
  color: var(--fg) !important;
  line-height: 1.45;
}
#divNotes_clsCrswr.lms-notes b,
#divNotes_clsCrswr.lms-notes strong {
  font-weight: 600 !important;
}
#divNotes_clsCrswr.lms-notes i,
#divNotes_clsCrswr.lms-notes em {
  font-style: italic !important;
}
#divNotes_clsCrswr.lms-notes table,
#divNotes_clsCrswr.lms-notes tr,
#divNotes_clsCrswr.lms-notes td,
#divNotes_clsCrswr.lms-notes th {
  background: var(--table-bg) !important;
  border-color: var(--table-border) !important;
  color: var(--fg) !important;
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  width: auto;
}
#divNotes_clsCrswr.lms-notes td,
#divNotes_clsCrswr.lms-notes th {
  padding: 8px 12px;
  vertical-align: top;
}
#divNotes_clsCrswr.lms-notes .katex,
#divNotes_clsCrswr.lms-notes .katex * {
  font-family: KaTeX_Main, KaTeX_Math, "Times New Roman", serif !important;
  font-size: unset !important;
  font-style: unset !important;
  font-weight: unset !important;
  color: unset !important;
  line-height: unset !important;
  background: unset !important;
}
#divNotes_clsCrswr.lms-notes .marathiContent,
#divNotes_clsCrswr.lms-notes .marathiContent * {
  font-family: sarala, var(--font) !important;
}
#divNotes_clsCrswr.lms-notes .fa,
#divNotes_clsCrswr.lms-notes .fa * {
  font-family: FontAwesome, "Font Awesome 6 Free" !important;
  font-size: inherit !important;
}
#divNotes_clsCrswr.lms-notes svg text {
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  fill: var(--fg) !important;
}
.lms-formula-row {
  padding: 4px 0;
}
.lms-notes-audio {
  float: right;
  height: 40px;
  margin: 5px;
}
.svg-box {
  text-align: center;
  margin: 16px auto;
  background-color: var(--bg-elevated);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: fit-content;
}
.svg-text {
  fill: var(--fg) !important;
  font-family: var(--font) !important;
  font-size: var(--font-size);
  font-weight: 400;
}
.vec-blue { stroke: #1976d2; stroke-width: 2.2; fill: none; }
.vec-red { stroke: #e53935; stroke-width: 1.8; fill: none; stroke-dasharray: 5,4; }
.vec-green { stroke: #388e3c; stroke-width: 2.2; fill: none; }
.vec-orange { stroke: #f57c00; stroke-width: 2.2; fill: none; }
.body-outline {
  stroke: #546e7a;
  stroke-width: 1.5;
  fill: var(--bg-elevated) !important;
}
.rod-body {
  stroke: #cfd8dc;
  stroke-width: 8;
  stroke-linecap: round;
  fill: none;
}
.axis-line {
  stroke: #b0bec5;
  stroke-width: 1.2;
  stroke-dasharray: 6,4;
  fill: none;
}

/* Themed controls + spacing. Future org themes only override :root tokens. */
body.lms-app {
  --control-gap: var(--space-2);
}
body.lms-app .page {
  padding: var(--space-3);
}
#Courseware_new.page,
#Courseware.page,
#Schedule.page,
#Exam_MyExams.page,
#Exam_SelfExams.page,
#Logout.page,
#Home.page,
#MyContent.page,
#PracticeMCQNew.page {
  padding: 0;
}
body.lms-app .nav-tabs {
  padding: 0 10px;
  margin: 0;
  column-gap: 4px;
  row-gap: 0;
  min-height: 0;
}
body.lms-app .nav-tabs .nav-link {
  display: flex;
  align-items: center;
  min-height: var(--strip-height);
  padding: 0 12px;
  margin: 0;
  line-height: 1.2;
  box-sizing: border-box;
}
#qpTabs > .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  flex: 0 0 var(--strip-height);
  height: var(--strip-height);
  min-height: var(--strip-height);
  max-height: var(--strip-height);
  box-sizing: border-box;
  align-items: stretch;
  padding: 0 10px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
#qpTabs > .nav-tabs .nav-item {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 0;
}
#qpTabs > .nav-tabs .nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 100%;
  margin: 0 !important;
  padding: 0 12px;
  line-height: 1.2;
  box-sizing: border-box;
  border: none !important;
  border-radius: 0;
}
#qpTabs > .nav-tabs .nav-link.active {
  border: none !important;
  box-shadow: none;
}
body.lms-app .lms-crswr__nav {
  padding: 0 !important;
}
body.lms-app .lms-crswr__pane {
  padding: var(--block-pad) !important;
}
body.lms-app .lms-login {
  padding: var(--space-5);
}
body.lms-app .lms-home,
body.lms-app .lms-mycontent,
body.lms-app .lms-practice,
body.lms-app .lms-selfexams,
body.lms-app .lms-page {
  padding: var(--page-pad);
}
body.lms-app .lms-toolbar,
body.lms-app .d-flex.flex-wrap,
body.lms-app .d-flex.gap-2,
body.lms-app .d-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) !important;
  margin: 0 0 var(--space-3) 0;
  padding: 0;
}
body.lms-app .row {
  --bs-gutter-x: var(--space-2);
  --bs-gutter-y: var(--space-2);
  margin-left: 0;
  margin-right: 0;
  margin-bottom: var(--space-3);
}
body.lms-app .row > * {
  padding-left: 0;
  padding-right: var(--space-2);
  margin-top: 0;
  margin-bottom: 0;
}
body.lms-app .mb-2,
body.lms-app .mb-3 { margin-bottom: var(--space-3) !important; }
body.lms-app .mt-2,
body.lms-app .mt-3 { margin-top: var(--space-3) !important; }
body.lms-app .p-2 { padding: var(--space-2) !important; }
body.lms-app .lms-pad-0 { padding: 0 !important; }
body.lms-app .lms-pad-1,
body.lms-app .lms-pad-2 { padding: 0 !important; }
body.lms-app .lms-m-0,
body.lms-app .lms-m-1,
body.lms-app .lms-m-2,
body.lms-app .lms-mt-1,
body.lms-app .lms-mt-2,
body.lms-app .lms-mb-1,
body.lms-app .lms-ml-1,
body.lms-app .lms-ml-2,
body.lms-app .lms-mr-1,
body.lms-app .lms-mr-2 { margin: 0 !important; }

body.lms-app button.btn,
body.lms-app a.btn,
body.lms-app .btn,
body.lms-app .btn-sm,
body.lms-app .btn-lg,
body.lms-app input[type="button"],
body.lms-app input[type="submit"],
body.lms-app input[type="reset"],
body.lms-app select,
body.lms-app .form-select,
body.lms-app .form-control:not(textarea),
body.lms-app input[type="text"],
body.lms-app input[type="password"],
body.lms-app input[type="number"],
body.lms-app input[type="email"],
body.lms-app input[type="search"],
body.lms-app input[type="date"],
body.lms-app input[type="time"] {
  box-sizing: border-box !important;
  height: var(--control-height) !important;
  min-height: var(--control-height) !important;
  max-height: var(--control-height) !important;
  margin: 0 !important;
  padding: 0 var(--control-pad-x) !important;
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  font-weight: 400 !important;
  line-height: calc(var(--control-height) - 2px) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  vertical-align: middle;
}
body.lms-app select,
body.lms-app .form-select {
  color: var(--fg) !important;
  background-color: var(--input-bg) !important;
  border: 1px solid var(--input-border) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 10px 7px !important;
  padding-right: 28px !important;
}
body.lms-app .form-control:not(textarea),
body.lms-app input[type="text"],
body.lms-app input[type="password"],
body.lms-app input[type="number"],
body.lms-app input[type="email"],
body.lms-app input[type="search"],
body.lms-app input[type="date"],
body.lms-app input[type="time"] {
  color: var(--fg) !important;
  background-color: var(--input-bg) !important;
  border: 1px solid var(--input-border) !important;
}
body.lms-app textarea,
body.lms-app textarea.form-control {
  box-sizing: border-box !important;
  height: auto !important;
  min-height: 72px !important;
  max-height: none !important;
  margin: 0 !important;
  padding: var(--space-2) var(--control-pad-x) !important;
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  line-height: 1.4 !important;
  color: var(--fg) !important;
  background-color: var(--input-bg) !important;
  border: 1px solid var(--input-border) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}
body.lms-app .btn {
  --bs-btn-color: var(--fg);
  --bs-btn-bg: var(--bg-elevated);
  --bs-btn-border-color: var(--input-border);
  --bs-btn-hover-color: var(--fg);
  --bs-btn-hover-bg: var(--table-highlight);
  --bs-btn-hover-border-color: var(--input-border);
  --bs-btn-active-color: var(--fg);
  --bs-btn-active-bg: var(--table-highlight);
  --bs-btn-active-border-color: var(--input-border);
  --bs-btn-disabled-color: var(--muted);
  --bs-btn-disabled-bg: var(--bg-elevated);
  --bs-btn-disabled-border-color: var(--input-border);
  --bs-btn-focus-shadow-rgb: 0, 0, 0;
}
body.lms-app .btn,
body.lms-app .btn-primary,
body.lms-app .btn-secondary,
body.lms-app .btn-info,
body.lms-app .btn-success,
body.lms-app .btn-danger,
body.lms-app .btn-warning,
body.lms-app .btn-light,
body.lms-app .btn-dark,
body.lms-app .btn-link,
body.lms-app .btn-outline-primary,
body.lms-app .btn-outline-secondary,
body.lms-app .btn-outline-info,
body.lms-app .btn-outline-success,
body.lms-app .btn-outline-danger,
body.lms-app .btn-outline-warning,
body.lms-app .btn-outline-light,
body.lms-app .btn-outline-dark,
body.lms-app input[type="button"],
body.lms-app input[type="submit"],
body.lms-app input[type="reset"] {
  background-color: var(--bg-elevated) !important;
  background-image: none !important;
  border: 1px solid var(--input-border) !important;
  color: var(--fg) !important;
}
body.lms-app .btn:hover,
body.lms-app .btn:focus,
body.lms-app .btn:active,
body.lms-app .btn.show,
body.lms-app .btn.active,
body.lms-app input[type="button"]:hover,
body.lms-app input[type="submit"]:hover {
  background-color: var(--table-highlight) !important;
  border-color: var(--input-border) !important;
  color: var(--fg) !important;
  box-shadow: none !important;
}
body.lms-app select:focus,
body.lms-app .form-select:focus,
body.lms-app .form-control:focus,
body.lms-app input[type="text"]:focus,
body.lms-app input[type="password"]:focus,
body.lms-app textarea:focus {
  border-color: var(--input-border) !important;
  outline: none !important;
  box-shadow: var(--focus-ring) !important;
}
body.lms-app input[type="checkbox"],
body.lms-app input[type="radio"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  width: auto !important;
  margin: 0 var(--space-2) 0 0 !important;
  padding: 0 !important;
  vertical-align: middle;
}
body.lms-app input[type="file"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
}
body.lms-app label,
body.lms-app .form-label {
  display: block;
  color: var(--muted);
  margin: 0 0 var(--space-1) 0 !important;
  padding: 0;
  font-size: var(--font-size);
  font-weight: 400;
}
body.lms-app hr {
  margin: var(--space-3) 0;
  border-color: var(--border);
}
body.lms-app table {
  background: var(--table-bg);
  color: var(--fg);
  border-color: var(--table-border);
}
body.lms-app table th,
body.lms-app table td {
  font-family: var(--table-font);
  font-size: var(--table-font-size);
  line-height: var(--line-height);
  color: var(--fg);
  border-color: var(--table-border);
  padding: var(--table-cell-y) var(--table-cell-x);
}
body.lms-app table th {
  background: var(--table-header-bg);
  color: var(--table-header-fg);
  font-weight: var(--table-header-weight);
}
body.lms-app table.outer tbody tr:hover td {
  background: var(--table-highlight);
}
body.lms-app table.outer tr.lms-row-active td,
body.lms-app table.outer td.lms-cell-active {
  background: var(--row-active);
}
body.lms-app table.outer,
body.lms-app table.inner1,
body.lms-app table.reportTable {
  margin: 0;
}
body.lms-app .modal-body {
  padding: var(--space-4);
}
body.lms-app .modal-footer {
  padding: var(--space-3) var(--space-4);
  gap: var(--space-2);
}
body.lms-app a:not(.nav-link):not(.btn):not(.tree-leaf-text) {
  color: var(--accent);
}
body.lms-app .courseware.topic,
body.lms-app .courseware.subtopic,
body.lms-app .courseware.subsubtopic,
body.lms-app .courseware.content,
body.lms-app .courseware.summary,
body.lms-app .topicheading,
body.lms-app .subtopicheading {
  font-family: var(--font);
  font-size: var(--font-size);
  color: var(--fg);
  font-weight: 400;
  margin: 0 0 var(--space-2) 0;
  padding: 0;
}
.kdtwatermark {
  position: fixed;
  top: 30%;
  left: 85%;
  opacity: 0.2;
  z-index: 0;
  width: 10%;
  height: 20%;
}
.myContentRow_clsMyContent { cursor: pointer; }
.myContentRow_clsMyContent:hover,
.hover-table tbody tr:hover {
  background-color: var(--table-highlight);
}
.lms-cell-active {
  background: var(--row-active) !important;
}
#MyContent.page {
  overflow: hidden;
  height: 100% !important;
}
.lms-mycontent {
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  padding: var(--page-pad);
  overflow: hidden;
  background: var(--bg);
}
.lms-mycontent__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--toolbar-gap);
  flex: 0 0 auto;
}
.lms-mycontent__hint {
  color: var(--muted);
  font-family: var(--font);
  font-size: var(--font-size);
}
.lms-mycontent__panes {
  display: flex;
  align-items: stretch;
  gap: var(--pane-gap);
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
}
.lms-mycontent__pane {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lms-mycontent__pane .lms-home__table {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
}
.lms-mycontent table.outer {
  width: max-content;
  max-width: none;
  margin: 0;
  table-layout: auto;
}
.lms-mycontent table.outer td,
.lms-mycontent table.outer th {
  word-break: normal;
  overflow-wrap: normal;
  white-space: nowrap;
  vertical-align: middle;
}
.lms-mycontent table.outer td.lms-cell-text {
  white-space: normal;
  min-width: 8em;
}
#PracticeMCQNew.page {
  overflow: hidden;
  height: 100% !important;
}
.lms-practice {
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  padding: var(--page-pad);
  overflow: hidden;
  background: var(--bg);
}
.lms-practice__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--toolbar-gap);
  flex: 0 0 auto;
}
.lms-practice__toolbar .lms-select {
  width: auto;
  min-width: 160px;
  flex: 0 1 180px;
}
.lms-practice__toolbar .form-control {
  flex: 1 1 160px;
  min-width: 140px;
  width: auto;
}
.lms-practice__hint {
  color: var(--muted);
  font-family: var(--font);
  font-size: var(--font-size);
}
.lms-practice__panes {
  display: flex;
  align-items: stretch;
  gap: var(--pane-gap);
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
}
.lms-practice__pane {
  flex: 0 1 32%;
  width: 32%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lms-practice__pane--main {
  flex: 1 1 68%;
  width: auto;
}
.lms-practice__pane .lms-home__table,
.lms-practice__questions {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.lms-practice__questions table.outer td:first-child {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  vertical-align: top;
}
.lms-practice__questions tr:has(.lms-practice__feedback) > td,
.lms-practice__questions tr:has(.lms-practice__feedback) > td:first-child {
  vertical-align: middle;
}
.lms-practice__feedback {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--toolbar-gap);
  width: 100%;
  min-width: 0;
  min-height: var(--control-height);
}
.lms-practice__feedback .lms-select {
  width: auto;
  flex: 0 1 auto;
  min-width: calc(var(--control-height) * 5);
  display: flex;
  align-items: center;
  height: var(--control-height);
}
.lms-practice__feedback .btn,
.lms-practice__feedback .starMarkQuestion_clsPrctMcq {
  align-self: center;
}
.lms-practice__feedback .starMarkQuestion_clsPrctMcq {
  margin-left: auto;
  flex: 0 0 auto;
  display: block;
}
.lms-practice__questions tr:has(.lms-practice__feedback) .selectQid_clsPrctMcq {
  margin: 0;
  vertical-align: middle;
}
.lms-practice #mcqSummaryTable_clsPrctMcq {
  width: 100%;
  max-width: 100%;
  margin: 0;
  table-layout: fixed;
}
.lms-practice #mcqSummaryTable_clsPrctMcq td,
.lms-practice #mcqSummaryTable_clsPrctMcq th {
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
  vertical-align: middle;
}
.lms-practice #mcqSummaryTable_clsPrctMcq td.lms-cell-text {
  white-space: normal;
  min-width: 0;
}
.lms-practice #mcqSummaryTable_clsPrctMcq th:nth-child(2),
.lms-practice #mcqSummaryTable_clsPrctMcq td:nth-child(2) {
  width: 3.2em;
  min-width: 3.2em;
  white-space: nowrap;
}
.lms-practice #mcqSummaryTable_clsPrctMcq th:nth-child(4),
.lms-practice #mcqSummaryTable_clsPrctMcq td:nth-child(4) {
  width: 4.2em;
  min-width: 4.2em;
  white-space: nowrap;
}
.lms-practice #mcqSummaryTable_clsPrctMcq tr.lms-row-total td:nth-child(3) {
  white-space: nowrap;
}
.lms-practice #mcqSummaryTable_clsPrctMcq tr.lms-row-active td {
  background: var(--row-active);
}
#Exam_SelfExams.page:has(.lms-selfexams) {
  overflow: hidden;
  height: 100% !important;
}
.lms-selfexams {
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  padding: var(--page-pad);
  overflow: hidden;
  background: var(--bg);
}
.lms-selfexams__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--toolbar-gap);
  flex: 0 0 auto;
}
.lms-selfexams__toolbar .lms-select {
  width: auto;
  min-width: 160px;
  flex: 0 1 180px;
}
.lms-selfexams__hint {
  color: var(--muted);
  font-family: var(--font);
  font-size: var(--font-size);
}
.lms-selfexams__list {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lms-selfexams__list .lms-home__table {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
}
.lms-selfexams table.outer {
  width: 100%;
  max-width: 100%;
  margin: 0;
  table-layout: auto;
}
.lms-selfexams table.outer td,
.lms-selfexams table.outer th {
  word-break: normal;
  overflow-wrap: anywhere;
  white-space: nowrap;
  vertical-align: middle;
}
.lms-selfexams table.outer td.lms-cell-text {
  white-space: normal;
  min-width: 8em;
}
.lms-selfexams__actions {
  white-space: nowrap;
}
.lms-selfexams__actions .btn {
  margin: 0 var(--space-1) 0 0;
}
body.lms-app .page:has(> .lms-page),
body.lms-app .page:has(.lms-page) {
  padding: 0;
  overflow: hidden;
  height: 100% !important;
}
.lms-page {
  display: flex;
  flex-direction: column;
  gap: var(--page-gap);
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  padding: var(--page-pad);
  overflow: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: var(--font-size);
  line-height: var(--line-height);
}
.lms-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--toolbar-gap);
  flex: 0 0 auto;
}
.lms-page__toolbar .lms-select {
  width: auto;
  min-width: calc(var(--control-height) * 4);
  flex: 0 1 auto;
}
.lms-page__toolbar .form-control {
  flex: 1 1 calc(var(--control-height) * 4);
  min-width: calc(var(--control-height) * 4);
  width: auto;
}
.lms-page__hint {
  color: var(--muted);
  font-family: var(--font);
  font-size: var(--font-size);
}
.lms-page__block {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: var(--block-pad);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.lms-page__title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 0 var(--space-2) 0;
  color: var(--muted);
  font-family: var(--font);
  font-size: var(--font-size);
  font-weight: var(--table-header-weight);
  line-height: var(--line-height);
}
.lms-page__body {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  overflow: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--block-pad);
}
.lms-page__block > .lms-page__body {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.lms-page__panes {
  display: flex;
  align-items: stretch;
  gap: var(--pane-gap);
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
}
.lms-page__pane {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#Schedule.page .lms-sch-grid {
  flex: 3 1 0;
  width: 75%;
}
#Schedule.page .lms-sch-summary {
  flex: 1 1 0;
  width: 25%;
}
.lms-page__fields {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.lms-page__field {
  flex: 1 1 calc(var(--control-height) * 6);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.lms-page table.outer {
  width: 100%;
  max-width: 100%;
  margin: 0;
  table-layout: fixed;
}
.lms-page table.outer td,
.lms-page table.outer th {
  word-break: normal;
  overflow-wrap: anywhere;
  white-space: nowrap;
  vertical-align: middle;
}
.lms-page table.outer td.lms-cell-text {
  white-space: normal;
}
.lms-page__toolbar .form-select {
  width: auto;
  min-width: calc(var(--control-height) * 4);
  flex: 0 1 auto;
}
.lms-page__toolbar .form-check {
  margin: 0;
}
.lms-page__hidden {
  visibility: hidden;
}
.lms-page__stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
}
.lms-page__editor-host {
  flex: 1 1 auto;
  min-height: calc(var(--control-height) * 8);
  min-width: 0;
}
.lms-page .spinner-border {
  width: var(--control-height);
  height: var(--control-height);
}
.lms-page hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}
.hover-table thead tr {
  background-color: var(--table-header-bg);
}
table.internal {
  border-collapse: collapse;
  margin: 0 auto;
}
table.internal td {
  padding: var(--space-3);
  border: 1px solid var(--table-border);
}
body.lms-app table.inner1 td {
  padding: 0;
}
body.lms-app table.schedule td,
body.lms-app table.scheduleSummary td,
body.lms-app table.scheduleSummary th {
  padding: 1px var(--space-1);
}
.scheduleCell {
  padding: 0;
  margin: 0;
  text-align: center;
  vertical-align: middle;
}
#Schedule.page .lms-page__body,
#divSchedule_clsSchdl {
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}
.svg-container { overflow: visible; }

.lms-select {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}
.lms-select__native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0);
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.lms-select__btn {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2);
  position: relative;
  width: 100%;
  box-sizing: border-box !important;
  height: var(--control-height) !important;
  min-height: var(--control-height) !important;
  max-height: var(--control-height) !important;
  margin: 0 !important;
  padding: 0 28px !important;
  font-family: var(--font) !important;
  font-size: var(--font-size) !important;
  font-weight: 400 !important;
  line-height: calc(var(--control-height) - 2px) !important;
  text-align: left;
  color: var(--fg) !important;
  background-color: var(--input-bg) !important;
  border: 1px solid var(--input-border) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 10px 7px !important;
}
.lms-select.is-placeholder .lms-select__btn {
  justify-content: center;
  text-align: center;
  color: var(--muted) !important;
}
.lms-select__btn-label {
  display: inline-flex;
  align-items: center;
  justify-content: inherit;
  gap: var(--space-2);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.lms-select__btn-label i {
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--muted);
}
.lms-select__btn-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lms-select__btn:hover,
.lms-select__btn:focus,
.lms-select.is-open .lms-select__btn {
  background-color: var(--input-bg) !important;
  border-color: var(--input-border) !important;
  color: var(--fg) !important;
  box-shadow: var(--focus-ring) !important;
}
.lms-select__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.lms-select__menu {
  display: none;
  flex-direction: column;
  position: fixed;
  z-index: 4000;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--bg-elevated);
  color: var(--fg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lms-select.is-open .lms-select__menu {
  display: flex;
}
.lms-select__search {
  width: calc(100% - 16px) !important;
  max-width: none !important;
  margin: 8px !important;
  flex: 0 0 auto;
}
.lms-select__list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 0 var(--space-1) 0;
}
.lms-select__option {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: var(--control-height);
  padding: 0 var(--control-pad-x);
  font-family: var(--font);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: var(--control-height);
  color: var(--fg);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lms-select__option.is-placeholder {
  justify-content: center;
  text-align: center;
  color: var(--muted);
}
.lms-select__option.is-placeholder .lms-select__btn-label i {
  color: var(--muted);
}
.lms-select__option:hover,
.lms-select__option.is-active {
  background: var(--table-highlight);
  color: var(--fg);
}
.lms-select__option.is-selected {
  background: var(--table-header-bg);
  color: var(--fg);
}
.lms-select__option.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.lms-select__empty {
  padding: var(--space-2) var(--control-pad-x);
  color: var(--muted);
  font-size: var(--font-size);
}
