.elementor-7181 .elementor-element.elementor-element-97b6450{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b01a3b0 *//* ==========================================
   CORE STRUCTURAL SETUPS & RESET RULES
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
}

body {
  background-color: #f8f9fa;
  padding: 20px;
}

.dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ==========================================
   HEADER NAVIGATION DESKTOP BAR
   ========================================== */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #ffffff;
  margin-bottom: 40px;
  border-bottom: 1px solid #eef0f2;
  border-radius: 8px;
}

.logo-fallback-text {
  font-family: 'Merriweather', serif;
  font-size: 24px;
  font-weight: 700;
  color: #003366;
}
.logo-fallback-text i { color: #11caa0; }

/* Hidden by default on computer displays */
.btn-menu-hamburger {
  display: none;
}

.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #445566;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a.active, .main-nav a:hover { color: #00a0e3; }

/* ==========================================
   VIEW CONTROL FORMAT SWITCH PANEL
   ========================================== */
.view-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 25px;
  background: white;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #eef0f2;
}

.controls-label {
  font-size: 13px;
  font-weight: 700;
  color: #003366;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-view-group { display: flex; gap: 6px; }

.btn-view {
  background: #f1f3f5;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: bold;
  color: #445566;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.btn-view i { margin-right: 6px; }
.btn-view:hover { background: #e2e6ea; }
.btn-view.active { background: #003366; color: white; }

/* ==========================================
   CORE MODULE GRID & CARD PRESENTATIONS
   ========================================== */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.module-card {
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.05);
}

.card-image-wrapper {
  position: relative;
  background: #f1f3f5;
  padding: 30px;
  text-align: center;
}
.card-image-wrapper img {
  max-width: 100%;
  height: 140px;
  object-fit: contain;
}

.badge.enrolled {
  position: absolute; top: 15px; left: 15px;
  background: #00a0e3; color: white;
  padding: 4px 12px; font-size: 11px; font-weight: bold; border-radius: 20px;
}

.card-content {
  padding: 20px; text-align: center;
  display: flex; flex-direction: column; flex-grow: 1;
}

.module-title {
  font-family: 'Merriweather', serif;
  font-size: 18px; color: #003366;
  margin-bottom: 20px; min-height: 50px;
}

/* Dynamic Action Card Interaction Buttons */
.action-btn-group {
  margin-bottom: 20px;
  width: 100%;
}

.btn-main-action {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-main-action:active { transform: scale(0.98); }

.btn-continue-study { background: #00a0e3; color: white; }
.btn-continue-study:hover { background: #0081b7; }

.btn-enroll { background: #11caa0; color: white; }
.btn-enroll:hover { background: #0da381; }

/* Internal Progress Bar Rails */
.progress-track {
  background: #eef0f2; height: 6px; border-radius: 3px;
  margin-bottom: 8px; overflow: hidden;
}
.progress-fill {
  background: #11caa0; height: 100%; width: 0%;
  transition: width 0.4s ease;
}
.progress-text { font-size: 11px; font-weight: bold; color: #11caa0; }

/* ==========================================
   LAYOUT MODIFIERS (COMPACT GRID & ROW LIST)
   ========================================== */
.modules-grid.view-compact {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 15px;
}
.modules-grid.view-compact .card-image-wrapper { padding: 15px; }
.modules-grid.view-compact .card-image-wrapper img { height: 100px; }
.modules-grid.view-compact .module-title { font-size: 14px; min-height: 44px; margin-bottom: 12px; }
.modules-grid.view-compact .btn-main-action { font-size: 12px; padding: 10px; }

.modules-grid.view-list { display: flex; flex-direction: column; gap: 12px; }
.modules-grid.view-list .module-card { flex-direction: row; align-items: center; padding: 12px 24px; gap: 20px; }
.modules-grid.view-list .card-image-wrapper { padding: 0; background: transparent; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modules-grid.view-list .card-image-wrapper img { height: 45px; width: 45px; object-fit: contain; }
.modules-grid.view-list .badge.enrolled { display: none; }
.modules-grid.view-list .card-content { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; padding: 0; text-align: left; }
.modules-grid.view-list .module-title { font-size: 16px; min-height: auto; margin-bottom: 0; flex: 2; padding-right: 20px; }
.modules-grid.view-list .action-btn-group { margin-bottom: 0; flex: 1; max-width: 200px; display: flex; justify-content: flex-end; }
.modules-grid.view-list .btn-main-action { padding: 10px 16px; font-size: 13px; border-radius: 6px; }
.modules-grid.view-list .progress-wrapper { flex: 1; max-width: 180px; display: flex; flex-direction: column; justify-content: center; padding-left: 20px; border-left: 1px solid #e2e8f0; }

/* ==========================================
   ACCORDION ANALYTICS DISPLAY SYSTEM
   ========================================== */
.progress-dashboard { max-width: 1000px; margin: 0 auto; padding-bottom: 60px; }
.progress-view-title-block { margin-bottom: 30px; }
.progress-view-title-block h2 { font-family: 'Merriweather', serif; color: #003366; font-size: 28px; margin-bottom: 6px; }
.progress-view-title-block p { color: #64748b; font-size: 15px; }

.accordion-wrapper { display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.01); }

.accordion-header {
  width: 100%; background: none; border: none; padding: 20px 25px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; text-align: left; transition: background 0.2s;
}
.accordion-header:hover { background: #f8fafc; }

.header-title-section { display: flex; align-items: center; gap: 15px; flex: 2; }
.accordion-header-icon { font-size: 20px; color: #003366; width: 30px; text-align: center; }
.accordion-header h3 { font-family: 'Merriweather', serif; font-size: 16px; color: #003366; }

.header-metrics-section { display: flex; align-items: center; gap: 30px; flex: 1; justify-content: flex-end; }
.accordion-progress-wrapper { width: 150px; }
.accordion-percent-text { font-size: 13px; font-weight: bold; color: #11caa0; min-width: 45px; text-align: right; }
.accordion-chevron { color: #94a3b8; transition: transform 0.2s ease; font-size: 14px; }

.accordion-content { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.25s cubic-bezier(0, 1, 0, 1); background: #fafbfc; border-top: 0 solid #e2e8f0; }
.accordion-item.open .accordion-content { max-height: 500px; padding: 25px; border-top-width: 1px; transition: max-height 0.25s cubic-bezier(1, 0, 1, 0); }
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }

.expanded-inner-layout { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.activity-audit-checklist { display: flex; flex-direction: column; gap: 10px; }
.audit-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #475569; font-weight: 500; }
.audit-row i { font-size: 16px; }
.audit-row i.done { color: #11caa0; }
.audit-row i.pending { color: #cbd5e1; }

.btn-resume-study {
  background: #00a0e3; color: white; border: none; padding: 12px 28px;
  font-size: 13px; font-weight: bold; border-radius: 20px; cursor: pointer;
  text-decoration: none; transition: background 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-resume-study:hover { background: #0081b7; }

/* ==========================================
   MOBILE & TABLET RESPONSIVE OVERRIDES
   ========================================== */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  /* Responsive Adaptive Header Configs */
  .dashboard-header {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    text-align: center;
  }

  .btn-menu-hamburger {
    display: block !important;
    background: #f1f5f9;
    border: none;
    padding: 10px 14px;
    font-size: 18px;
    color: #003366;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-menu-hamburger:hover { background: #e2e8f0; }

  /* Collapse desktop layouts into hidden list elements */
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 15px;
    border-top: 1px solid #e2e8f0;
    padding-top: 10px;
  }

  /* Active Accordion Toggled Selector Class State */
  .main-nav.mobile-open {
    display: flex !important;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 15px;
    text-align: left;
    margin-left: 0 !important;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .main-nav a:hover {
    background: #f1f5f9;
  }

  /* Compact Display Layout Controls Modification */
  .view-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: center;
  }
  
  .btn-view-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  
  .btn-view {
    padding: 8px 4px;
    font-size: 11px;
    text-align: center;
  }

  /* Horizontal Rows broken into clean stack boxes */
  .modules-grid.view-list .module-card {
    flex-direction: column;
    align-items: stretch;
    padding: 15px;
    gap: 15px;
  }

  .modules-grid.view-list .card-image-wrapper {
    background: #f1f3f5;
    width: 100%;
    height: 100px;
  }

  .modules-grid.view-list .card-content {
    flex-direction: column;
    gap: 15px;
  }

  .modules-grid.view-list .module-title {
    text-align: center;
    padding-right: 0;
  }

  .modules-grid.view-list .action-btn-group {
    max-width: 100%;
  }

  .modules-grid.view-list .progress-wrapper {
    max-width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
  }

  /* Progress Metrics Subsystem Breakdowns */
  .accordion-header {
    padding: 15px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .header-metrics-section {
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
    width: 100%;
  }

  .expanded-inner-layout {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .btn-resume-study {
    justify-content: center;
    width: 100%;
  }
}

.hidden { display: none !important; }/* End custom CSS */