:root {
  --VAOacademy-primary: #C9A84C;
  --VAOacademy-primary-dark: #1d4ed8;
  --VAOacademy-primary-gradient: linear-gradient(135deg, var(--VAOacademy-primary) 0%, var(--VAOacademy-primary-dark) 100%);
}

.tw-w-16 {
  width: 16px;
}

.tw-h-16 {
  height: 16px;
}

.tw-w-20 {
  width: 20px;
}



.VAOacademy-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
  white-space: nowrap;
}


.VAOacademy-info-icon-wrapper {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background-color: #0EBE91;
  text-align: center;
  position: relative;
}

.VAOacademy-delete-field-cta {
  position: absolute;
  right: -40px;
  top: 0;
}

.VAOacademy-img-preview {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 5px;
}

.VAOacademy-cart-course-image {
  width: 100%;
  height: 8rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  transition: opacity 0.2s ease;
}

.VAOacademy-cart-course-image:hover {
  opacity: 0.9;
}

@media (min-width: 640px) {
  .VAOacademy-cart-course-image {
    width: 8rem;
    height: 6rem;
  }
}

@media (min-width: 768px) {
  .VAOacademy-cart-course-image {
    width: 15rem;
    height: 10rem;
  }
}

/* ========== Courses Page Layout ========== */
.VAOacademy-courses-page {
  background-color: #f9fafb;
  min-height: 100vh;
  padding: 0;
}

.VAOacademy-courses-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.VAOacademy-courses-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

.VAOacademy-desktop-sidebar {
  display: none;
}

@media (min-width: 768px) {
  .VAOacademy-desktop-sidebar {
    display: block;
  }
  
  .VAOacademy-courses-layout {
    grid-template-columns: 250px 1fr;
    gap: 1rem;
  }
}
  display: block;
}

.VAOacademy-line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.VAOacademy-line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.VAOacademy-line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.VAOacademy-pill {
  border-radius: 9999px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--VAOacademy-primary);
  font-size: 0.75rem;
  padding: 0.125rem 0.625rem;
  font-weight: 600;
}

.VAOacademy-pill i {
  color: var(--VAOacademy-primary);
  margin-right: 0.25rem;
}

/* ========== Curriculum Container ========== */
.VAOacademy-curriculum-container .section-item {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  position: relative;
}

.VAOacademy-curriculum-container .section-header .section-actions {
  display: none;
  gap: 2px;
  right: 0;
  position: absolute;
  top: 10px;
  transition: all 0.6s ease;
}

.VAOacademy-curriculum-container .section-header:hover .section-actions {
  display: flex;
}

.VAOacademy-section-content {
  border-top: 1px solid #ccc;
  margin-top: 20px;
}

/* ========== Tabs System ========== */
#VAOacademy-tabs{
  margin-bottom: 0px;
}
.VAOacademy-tabs-active {
  position: relative;
}

.VAOacademy-tabs-active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
}

.VAOacademy-tabs-pane {
  display: none;
}

.VAOacademy-tabs-pane-active {
  display: block;
}


/* ========== FAQ & Accordion ========== */
.VAOacademy-faq-active {
  color: var(--VAOacademy-primary);
}

.VAOacademy-faq-active > i {
  transform: rotate(180deg);
}

.VAOacademy-faq-content {
  display: none;
}

.VAOacademy-order-item {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: move;
}

.VAOacademy-accordion-content {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  background: white;
  border-radius: 0 0 8px 8px;
}

.VAOacademy-accordion-content.show {
  display: block !important;
}

.VAOacademy-accordion-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.VAOacademy-accordion-icon.rotated {
  transform: rotate(180deg);
}

.VAOacademy-section-number {
  font-weight: bold;
  color: #333;
  margin-right: 8px;
}


.VAOacademy-price-small {
  font-size: 0.75rem;
  line-height: 1rem;
}


/* ========== Cart Course Image ========== */
.VAOacademy-cart-course-image {
  width: 100%;
  height: 8rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  transition: opacity 0.2s ease;
}

.VAOacademy-cart-course-image:hover {
  opacity: 0.9;
}

@media (min-width: 640px) {
  .VAOacademy-cart-course-image {
    width: 8rem;
    height: 6rem;
  }
}

@media (min-width: 768px) {
  .VAOacademy-cart-course-image {
    width: 15rem;
    height: 10rem;
  }
}

/* ========== Courses Page Layout ========== */
.VAOacademy-courses-page {
  background-color: #f9fafb;
  min-height: 100vh;
  padding: 0;
}

.VAOacademy-courses-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.VAOacademy-courses-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

.VAOacademy-desktop-sidebar {
  display: none;
}

@media (min-width: 768px) {
  .VAOacademy-desktop-sidebar {
    display: block;
  }
  
  .VAOacademy-courses-layout {
    grid-template-columns: 250px 1fr;
    gap: 1rem;
  }
}

/* ========== Mobile Filter Modal ========== */
.VAOacademy-mobile-filter-modal .modal-dialog {
  margin: 1.5rem;
  max-width: 420px;
}

.VAOacademy-mobile-filter-modal .modal-content {
  border: none;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

.VAOacademy-mobile-filter-modal .modal-header {
  border-bottom: 1px solid #eef2f6;
  padding: 20px 24px;
}

.VAOacademy-mobile-filter-modal .modal-body {
  padding: 24px;
}

.VAOacademy-mobile-filter-modal .input-group-addon {
  border-radius: 10px 0 0 10px;
  border-right: none;
}

.VAOacademy-mobile-filter-modal .form-control {
  border-radius: 0 10px 10px 0;
}

.VAOacademy-mobile-filter-modal .VAOacademy-mobile-filter-list {
  border: none;
  margin-bottom: 0;
}

.VAOacademy-mobile-filter-modal .VAOacademy-mobile-filter-list .list-group-item {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #1f2937;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.VAOacademy-mobile-filter-modal .VAOacademy-mobile-filter-list .list-group-item:last-child {
  margin-bottom: 0;
}

.VAOacademy-mobile-filter-modal
  .VAOacademy-mobile-filter-list
  .list-group-item input[type="radio"] {
  margin: 0;
  transform: scale(1.1);
}

.VAOacademy-mobile-filter-modal .VAOacademy-mobile-filter-list .list-group-item span {
  flex: 1;
}

.VAOacademy-mobile-filter-modal .VAOacademy-mobile-filter-list .list-group-item:hover,
.VAOacademy-mobile-filter-modal
  .VAOacademy-mobile-filter-list
  .list-group-item:focus-within {
  border-color: var(--VAOacademy-primary);
  background-color: rgba(201, 168, 76, 0.05);
}

.VAOacademy-mobile-filter-modal
  .VAOacademy-mobile-filter-list
  .VAOacademy-mobile-filter-sublabel {
  padding-left: 32px;
  font-size: 0.95rem;
  color: #4b5563;
}

.VAOacademy-filter-card {
  position: sticky;
  top: 20px;
}

.VAOacademy-filter-card .form-group + .form-group {
  margin-top: 24px;
}

.VAOacademy-filter-list .list-group-item {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #1f2937;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.VAOacademy-filter-list .list-group-item:last-child {
  margin-bottom: 0;
}

.VAOacademy-filter-list .list-group-item input[type="radio"] {
  margin: 0;
  transform: scale(1.1);
}

.VAOacademy-filter-list .list-group-item span {
  flex: 1;
}

.VAOacademy-filter-list .list-group-item:hover,
.VAOacademy-filter-list .list-group-item:focus-within {
  border-color: var(--VAOacademy-primary);
  background-color: rgba(201, 168, 76, 0.05);
}

.VAOacademy-filter-list .VAOacademy-filter-sublabel {
  padding-left: 32px;
  font-size: 0.95rem;
  color: #4b5563;
}

/* ========== Sidebar & Search ========== */
.VAOacademy-sidebar,
.VAOacademy-course-main,
.VAOacademy-lesson-progress-card,
.VAOacademy-course-info-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.VAOacademy-course-main {
  padding: 2rem;
}

.VAOacademy-sidebar-sticky {
  position: sticky;
  top: 1rem;
}

.VAOacademy-search-box {
  position: relative;
  margin-bottom: 1.5rem;
}

.VAOacademy-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.VAOacademy-search-input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.VAOacademy-search-input:focus {
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.VAOacademy-filter-input {
  width: 1rem;
  height: 1rem;
  color: #C9A84C;
  border-color: #d1d5db;
}

/* ========== Button Variants ========== */
.VAOacademy-btn-primary {
  background-color: var(--VAOacademy-primary);
  border-color: var(--VAOacademy-primary);
}

.VAOacademy-btn-primary:hover {
  background-color: var(--VAOacademy-primary-dark);
  border-color: var(--VAOacademy-primary-dark);
}

.VAOacademy-btn-primary:active,
.VAOacademy-btn-primary:focus {
  background-color: var(--VAOacademy-primary-dark) !important;
  border-color: var(--VAOacademy-primary-dark) !important;
}

.VAOacademy-btn-secondary:active,
.VAOacademy-btn-secondary:focus {
  outline-color: var(--VAOacademy-primary-dark) !important;
}

/* ========== Course Grid & Cards ========== */
.VAOacademy-courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .VAOacademy-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
.VAOacademy-courses-grid {
    grid-template-columns: repeat(3, 1fr);
}
}

.VAOacademy-course-card {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.3s;
}

.VAOacademy-course-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.VAOacademy-course-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  display: block;
}

.VAOacademy-course-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.VAOacademy-course-image-wrapper:hover .VAOacademy-course-image {
  transform: scale(1.05);
}

.VAOacademy-course-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.VAOacademy-course-image-wrapper:hover .VAOacademy-course-overlay {
  opacity: 1;
}

.VAOacademy-course-content {
  padding: 1rem;
}

.VAOacademy-course-title-link {
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.VAOacademy-course-title {
  color: #111827;
  margin: 0;
  transition: color 0.2s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.VAOacademy-course-title-link:hover .VAOacademy-course-title {
  color: #C9A84C;
}

.VAOacademy-course-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.VAOacademy-course-stars {
  display: flex;
  color: #fbbf24;
}

/* ========== Empty State ========== */
.VAOacademy-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
}

.VAOacademy-empty-icon {
  width: 5rem;
  height: 5rem;
  background-color: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.VAOacademy-empty-icon i {
  font-size: 3rem;
  color: #9ca3af;
}

/* ========== Status Badges ========== */
.VAOacademy-status-badge {
  display: inline-VAO;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.VAOacademy-status-completed {
  background-color: var(--VAOacademy-primary);
  color: #fff;
}

.VAOacademy-status-in-progress {
  background-color: #f59e0b;
  color: #fff;
}

.VAOacademy-status-enrolled {
  background-color: #C9A84C;
  color: #fff;
}

/* ========== Progress Bar ========== */
.VAOacademy-course-progress {
  margin: 1rem 0;
}

.VAOacademy-progress-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.VAOacademy-progress-percentage {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.VAOacademy-progress-bar {
  width: 100%;
  height: 0.5rem;
  background-color: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}

.VAOacademy-progress-fill {
  height: 100%;
  background-color: #C9A84C;
  transition: width 0.3s ease;
}

.VAOacademy-progress-status {
  margin-bottom: 1rem;
}

/* ========== Course Player ========== */
.VAOacademy-course-player-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.VAOacademy-course-player-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  min-height: 600px;
}


.VAOacademy-course-progress-summary {
  margin-bottom: 1.5rem;
}

.VAOacademy-course-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.VAOacademy-course-section {
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  overflow: hidden;
}

.VAOacademy-section-header {
  background: #f9fafb;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.VAOacademy-section-header h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin: 0;
}

.VAOacademy-section-lesson-count {
  font-size: 0.75rem;
  color: #6b7280;
}

.VAOacademy-section-lessons {
  padding: 0.5rem;
}

.VAOacademy-lesson-completed {
  background-color: #f0fdf4;
  color: #166534;
}

.VAOacademy-lesson-in-progress {
  background-color: #fef3c7;
  color: #92400e;
}

.VAOacademy-lesson-icon {
  font-size: 1rem;
  width: 1.5rem;
  text-align: center;
}

.VAOacademy-lesson-completed .VAOacademy-lesson-icon {
  color: #10b981;
}

.VAOacademy-lesson-in-progress .VAOacademy-lesson-icon {
  color: #f59e0b;
}

.VAOacademy-lesson-content {
  flex: 1;
  min-width: 0;
}

.VAOacademy-lesson-title {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 0.25rem 0;
  line-height: 1.25rem;
}

.VAOacademy-lesson-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #6b7280;
}

/* ========== Main Content Areas ========== */
.VAOacademy-course-welcome {
  text-align: center;
  padding: 3rem 2rem;
}

.VAOacademy-welcome-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.VAOacademy-course-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.VAOacademy-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.VAOacademy-stat-icon {
  font-size: 2rem;
  color: #C9A84C;
}

.VAOacademy-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.VAOacademy-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.VAOacademy-course-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ========== Lesson Page ========== */
.VAOacademy-lesson-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.VAOacademy-lesson-header {
  margin-bottom: 2rem;
}

.VAOacademy-lesson-breadcrumb {
  margin-bottom: 1rem;
}

.VAOacademy-breadcrumb-link {
  display: inline-VAO;
  align-items: center;
  gap: 0.5rem;
  color: #C9A84C;
  text-decoration: none;
  font-size: 0.875rem;
}

.VAOacademy-breadcrumb-link:hover {
  color: var(--VAOacademy-primary-dark);
  text-decoration: none;
}

.VAOacademy-lesson-title-section h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.VAOacademy-video-container {
  margin-bottom: 2rem;
}

.VAOacademy-video-player {
  width: 100%;
  height: 400px;
  border-radius: 0.5rem;
}

.VAOacademy-media-player{
  width: 100%;
  height: 400px;
  border-radius: 0.5rem;
  text-align: center;
  background-color: #f9fafb;
}

.VAOacademy-media-embed img{
  display: block;
  margin: 0 auto;
}

.VAOacademy-text-content {
  line-height: 1.7;
  color: #374151;
}

.VAOacademy-text-lesson-content{
  padding: 1rem;
  height: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow-y: auto;
}

.VAOacademy-lesson-content-wrapper{
  min-height: 400px;
  overflow-y: auto;
  background-color: #f9fafb;
}

.VAOacademy-file-container,
.VAOacademy-lesson-placeholder {
  text-align: center;
  padding: 3rem 2rem;
}

.VAOacademy-file-icon {
  font-size: 4rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

.VAOacademy-placeholder-icon {
  font-size: 4rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.VAOacademy-lesson-summary {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.VAOacademy-lesson-actions {
  margin-top: 1rem;
}

/* ========== Info Cards ========== */
.VAOacademy-lesson-progress-card h4,
.VAOacademy-course-info-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.VAOacademy-time-spent,
.VAOacademy-lesson-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.VAOacademy-course-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}

.VAOacademy-course-info-item:last-child {
  border-bottom: none;
}

.VAOacademy-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.VAOacademy-modal.show {
  opacity: 1;
  visibility: visible;
}

.VAOacademy-modal-content {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.VAOacademy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.VAOacademy-modal-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.VAOacademy-modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
}

.VAOacademy-modal-close:hover {
  color: #374151;
}

.VAOacademy-modal-body {
  padding: 1.5rem;
}

.VAOacademy-modal-footer {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.VAOacademy-course-info {
  margin-top: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.375rem;
}

/* ========== Fixed Cart Icon ========== */
.VAOacademy-fixed-cart-icon {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background-color: var(--VAOacademy-primary);
  color: white;
  border-radius: 50%;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  transform: scale(1);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.VAOacademy-fixed-cart-icon:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transform: scale(1.1);
  text-decoration: none;
  color: white;
}

.VAOacademy-fixed-cart-icon:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.VAOacademy-fixed-cart-icon .VAOacademy-cart-count {
  font-size: 0.75rem;
  min-width: 18px;
  height: 18px;
  line-height: 1;
}

/* ========== My Courses ========== */
.VAOacademy-my-courses-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.VAOacademy-my-courses-header {
  text-align: center;
  margin-bottom: 3rem;
}

.VAOacademy-my-courses-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 1024px) {
  .VAOacademy-course-player-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .VAOacademy-course-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .VAOacademy-stat-item {
    padding: 1rem;
  }
  
  .VAOacademy-modal-content {
    width: 95%;
  }
  
  .VAOacademy-fixed-cart-icon {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    padding: 0.75rem;
  }
  
  .VAOacademy-fixed-cart-icon i {
    font-size: 1.125rem;
  }
  
  .VAOacademy-my-courses-container {
    padding: 1rem;
  }
  
  .VAOacademy-course-actions {
    flex-direction: column;
  }
}

/* My Courses Card Styles */
.VAOacademy-my-course-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.VAOacademy-my-course-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.VAOacademy-my-course-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.VAOacademy-my-course-image-wrapper a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.VAOacademy-my-course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.VAOacademy-my-course-card:hover .VAOacademy-my-course-image {
  transform: scale(1.05);
}

.VAOacademy-my-course-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.VAOacademy-badge-pending {
  background: rgba(245, 158, 11, 0.9);
}

.VAOacademy-badge-completed {
  background: rgba(34, 197, 94, 0.9);
}

.VAOacademy-instructor-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f3f4f6;
}

.VAOacademy-instructor-name {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}


.VAOacademy-my-course-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.VAOacademy-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.VAOacademy-progress-label {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

.VAOacademy-progress-percentage {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 600;
}

.VAOacademy-progress-track {
    width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.VAOacademy-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--VAOacademy-primary) 0%, #E8C97A 100%);
  border-radius: 10px;
  transition: width 0.5s ease;
}

.VAOacademy-btn-continue {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
}

.VAOacademy-btn-continue:hover {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
}

.VAOacademy-btn-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.VAOacademy-btn-warning:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  color: white;
}

/* Course Player Layout */
.VAOacademy-player-layout {
  display: flex;
  gap: 1rem;
  min-height: 100vh;
}


.VAOacademy-player-header {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.VAOacademy-back-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  display: inline-VAO;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.VAOacademy-back-link:hover {
  color: var(--VAOacademy-primary);
}

.VAOacademy-player-video {
  position: relative;
  width: 100%;
  background: #000;
}

.VAOacademy-video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.VAOacademy-video-embed iframe,
.VAOacademy-video-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.VAOacademy-video-player {
  width: 100%;
  max-height: 70vh;
  display: block;
}

.VAOacademy-player-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 24px;
  background: white;
}

.VAOacademy-tab-btn {
  padding: 16px 24px;
  border: none;
  background: none;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.VAOacademy-tab-btn:hover {
  color: #1f2937;
}

.VAOacademy-tab-active {
  color: #1f2937;
  border-bottom-color: var(--VAOacademy-primary);
}

.VAOacademy-player-tab-content {
  padding: 24px;
  background: white;
  min-height: 200px;
}

.VAOacademy-tab-pane {
  display: none;
}

.VAOacademy-tab-pane-active {
  display: block;
}

.VAOacademy-summary-content {
  color: #4b5563;
  line-height: 1.7;
}

/* Player Sidebar */
.VAOacademy-player-sidebar {
  width: 380px;
  display: flex;
    flex-direction: column;
  max-height: 100vh;
  overflow: hidden;
}

.VAOacademy-sidebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.VAOacademy-sidebar-progress {
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.VAOacademy-progress-bar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.VAOacademy-progress-bar-bg {
    width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.VAOacademy-progress-bar-green {
  height: 100%;
  background: var(--VAOacademy-primary);
  border-radius: 10px;
  transition: width 0.5s ease;
}

.VAOacademy-progress-text {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

.VAOacademy-curriculum-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.VAOacademy-curriculum-section {
  border-bottom: 1px solid #e5e7eb;
}

.VAOacademy-section-header {
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.VAOacademy-section-header:hover {
  background: #f9fafb;
}

.VAOacademy-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #1f2937;
}

.VAOacademy-section-icon {
  font-size: 12px;
  transition: transform 0.2s;
  color: #6b7280;
}

.VAOacademy-section-lessons {
  background: #f9fafb;
}

.VAOacademy-lesson-item-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  transition: background 0.2s;
  border-left: 3px solid transparent;
}

.VAOacademy-lesson-item-wrapper:hover {
  background: white;
  border-left-color: var(--VAOacademy-primary);
}

.VAOacademy-lesson-checkbox-wrapper {
  padding: 12px 12px 12px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
}

.VAOacademy-lesson-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.VAOacademy-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.VAOacademy-checkbox-icon {
  color: white;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

.VAOacademy-lesson-checkbox:checked + .VAOacademy-checkbox-custom {
  background: var(--VAOacademy-primary);
  border-color: var(--VAOacademy-primary);
}

.VAOacademy-lesson-checkbox:checked + .VAOacademy-checkbox-custom .VAOacademy-checkbox-icon {
  opacity: 1;
}

.VAOacademy-lesson-checkbox:disabled + .VAOacademy-checkbox-custom {
  opacity: 0.5;
  cursor: not-allowed;
}

.VAOacademy-lesson-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 12px;
  text-decoration: none;
  color: #4b5563;
  transition: all 0.2s;
  flex: 1;
}

.VAOacademy-lesson-item:hover {
  color: var(--VAOacademy-primary);
}

.VAOacademy-lesson-current {
  color: var(--VAOacademy-primary);
  font-weight: 600;
}

.VAOacademy-lesson-item-wrapper:has(.VAOacademy-lesson-current) {
  border-left-color: var(--VAOacademy-primary);
  background: #F8F4EC;
  border-radius: 0.375rem;
}

.VAOacademy-lesson-item-wrapper:hover .VAOacademy-lesson-icon {
  color: var(--VAOacademy-primary);
}

.VAOacademy-lesson-icon {
  font-size: 14px;
  color: #9ca3af;
}

.VAOacademy-lesson-details {
  flex: 1;
  min-width: 0;
}

.VAOacademy-lesson-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

.VAOacademy-lesson-duration {
  font-size: 12px;
  color: #9ca3af;
}

.VAOacademy-sidebar-footer {
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .VAOacademy-player-layout {
    flex-direction: column;
  }
  
  .VAOacademy-player-sidebar {
    width: 100%;
    max-height: none;
    border-left: none;
    border-top: 1px solid #e5e7eb;
  }
}


/* ========== Quiz Player Styles ========== */
.VAOacademy-quiz-wrapper {
  min-height: 500px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 30px;
}

.VAOacademy-quiz-container {
  padding: 40px;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.VAOacademy-quiz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f1f3f5;
  flex-wrap: wrap;
}

.VAOacademy-quiz-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.VAOacademy-quiz-timer {
  background: var(--VAOacademy-primary-gradient);
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
  transition: all 0.3s ease;
}

.VAOacademy-quiz-timer.text-warning {
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
  animation: pulse 1s ease-in-out infinite;
}

.VAOacademy-quiz-timer.text-danger {
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.5);
  animation: pulse 0.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.VAOacademy-quiz-info {
  font-size: 14px;
  color: #6b7280;
}

.VAOacademy-quiz-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin-bottom: 30px;
}

/* Question Slides */
.VAOacademy-quiz-questions-container {
  position: relative;
  min-height: 100px;
  margin-bottom: 30px;
}

.VAOacademy-quiz-question-slide {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.VAOacademy-quiz-question-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.VAOacademy-question-text {
  color: #111827;
  margin-bottom: 35px;
  line-height: 1.7;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 4px solid var(--VAOacademy-primary);
  border-radius: 8px;
}

/* Options Styling */
.VAOacademy-question-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.VAOacademy-option-label {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.VAOacademy-option-label:hover {
  border-color: var(--VAOacademy-primary);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}

.VAOacademy-option-label:has(.VAOacademy-option-radio:checked) {
  border-color: var(--VAOacademy-primary);
  background: linear-gradient(135deg, #F5EDD4 0%, #E8C97A 100%);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}

.VAOacademy-option-radio {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 3px solid #d1d5db;
  border-radius: 50%;
  margin-right: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
}

.VAOacademy-option-radio:checked {
  border-color: var(--VAOacademy-primary);
  border-width: 7px;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.VAOacademy-option-radio:hover {
  border-color: var(--VAOacademy-primary);
  transform: scale(1.1);
}

.VAOacademy-option-text {
  font-size: 17px;
  font-weight: 500;
  color: #374151;
  user-select: none;
  flex: 1;
  line-height: 1.5;
}

.VAOacademy-option-label:has(.VAOacademy-option-radio:checked) .VAOacademy-option-text {
  color: #1f2937;
  font-weight: 600;
}

.VAOacademy-short-answer-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.VAOacademy-short-answer-input:focus {
  outline: none;
  border-color: var(--VAOacademy-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* Navigation Buttons */
.VAOacademy-quiz-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.VAOacademy-quiz-nav-buttons .btn {
  min-width: 120px;
  padding: 10px 30px;
  font-size: 16px;
}

.VAOacademy-quiz-submit-hidden {
  display: none;
}

.VAOacademy-quiz-completed {
  border-color: var(--VAOacademy-primary);
  background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%);
}

.VAOacademy-quiz-icon-large {
  font-size: 72px;
  margin-bottom: 20px;
}

/* Side Navigation Arrows */
.VAOacademy-quiz-side-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 120px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.VAOacademy-quiz-side-nav-left {
  left: 20px;
  background-color: #10b981;
}

.VAOacademy-quiz-side-nav-left:hover:not(:disabled) {
  background-color: #059669;
  transform: translateY(-50%) scale(1.05);
}

.VAOacademy-quiz-side-nav-right {
  right: 20px;
  background-color: #86efac;
}

.VAOacademy-quiz-side-nav-right:hover:not(:disabled) {
  background-color: #4ade80;
  transform: translateY(-50%) scale(1.05);
}

.VAOacademy-quiz-side-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Quiz Empty States */
.VAOacademy-quiz-empty {
  text-align: center;
  padding: 80px 40px;
  color: #6b7280;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 2px dashed #e5e7eb;
}


.VAOacademy-quiz-empty h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

.VAOacademy-quiz-empty p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #6b7280;
}

.VAOacademy-quiz-attempts {
  font-size: 14px;
  color: #6b7280;
  margin-top: 20px;
}

.VAOacademy-quiz-best-score {
  font-size: 18px;
  margin-top: 15px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .VAOacademy-quiz-container {
    padding: 20px;
  }
  
  .VAOacademy-quiz-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .VAOacademy-quiz-header-right {
    align-items: flex-start;
    width: 100%;
  }
  
  .VAOacademy-question-text {
    font-size: 18px;
  }
  
  .VAOacademy-quiz-nav-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .VAOacademy-quiz-btn {
    width: 100%;
  }
  
  .VAOacademy-quiz-side-nav {
    display: none;
  }
}

/* Certificate Layout */
.VAOacademy-certificate-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 16px 80px;
    background: #f3f4f6;
}

.VAOacademy-certificate-frame {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #fdfdfd;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.VAOacademy-certificate-border {
    border: 16px solid #1e3a8a;
    padding: 8px;
    background: #fff;
    position: relative;
}

.VAOacademy-certificate-border::before,
.VAOacademy-certificate-border::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid rgba(201, 168, 76, 0.35);
    pointer-events: none;
}

.VAOacademy-certificate-border::after {
    inset: 32px;
    border: 1px dashed rgba(59, 130, 246, 0.45);
}

.VAOacademy-certificate-body {
    position: relative;
    padding: 64px 72px;
    font-family: "Times New Roman", Georgia, serif;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(226, 232, 240, 0.35) 100%);
}

.VAOacademy-certificate-body::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    pointer-events: none;
}

.VAOacademy-certificate-title {
    text-align: center;
    letter-spacing: 6px;
    font-size: 54px;
    color: #1e3a8a;
    font-weight: 700;
    margin-bottom: 4px;
}

.VAOacademy-certificate-subtitle {
    text-align: center;
    font-size: 18px;
    letter-spacing: 4px;
    color: rgba(13, 27, 42, 0.8);
    margin-bottom: 40px;
}

.VAOacademy-certificate-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 16px;
    margin-bottom: 40px;
}

.VAOacademy-certificate-meta span {
    display: block;
    color: #1f2937;
    font-weight: 500;
}

.VAOacademy-certificate-qr {
    text-align: right;
}

.VAOacademy-certificate-qr img {
    width: 110px;
    height: 110px;
    border: 2px solid rgba(13, 27, 42, 0.3);
    padding: 6px;
    background: #fff;
}

.VAOacademy-certificate-qr-number {
    font-size: 12px;
    margin-top: 6px;
    letter-spacing: 1px;
    color: #1e3a8a;
}

.VAOacademy-certificate-date {
    text-align: right;
}

.VAOacademy-certificate-recipient {
    font-size: 20px;
    color: #1f2937;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.8;
}

.VAOacademy-certificate-recipient strong {
    display: block;
    font-size: 28px;
    margin: 12px 0;
    letter-spacing: 1px;
    color: #1e3a8a;
}

.VAOacademy-certificate-course {
    font-size: 18px;
    color: #1f2937;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 32px;
}

.VAOacademy-certificate-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 30px 0 40px;
    font-size: 16px;
    color: #1f2937;
}

.VAOacademy-certificate-stats span {
    display: block;
    text-align: center;
    font-weight: 500;
}

.VAOacademy-certificate-seal {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;   
}

.VAOacademy-certificate-signatures {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    font-size: 15px;
    color: #1f2937;
}

.VAOacademy-certificate-signature {
    text-align: center;
    min-width: 180px;
}

.VAOacademy-certificate-signature img {
    max-height: 70px;
    display: block;
    margin: 0 auto 16px;
    object-fit: contain;
}

.VAOacademy-certificate-signature.has-image .line {
    margin-top: 0;
}


.VAOacademy-certificate-signature .line {
    width: 100%;
    height: 1px;
    background: rgba(13, 27, 42, 0.6);
    margin: 28px auto 12px;
}



@media (max-width: 768px) {
    .VAOacademy-certificate-body {
        padding: 32px 24px;
    }

    .VAOacademy-certificate-title {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .VAOacademy-certificate-stats {
        flex-direction: column;
        gap: 20px;
    }

    .VAOacademy-certificate-seal {
        display: none;
    }
}

@media print {
    body {
        background: #fff;
    }

    .VAOacademy-certificate-page {
        padding: 0;
        background: #fff;
    }

}
/* Certificate Tab */
.VAOacademy-certificate-tab {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #1f2937;
}

.VAOacademy-certificate-progress-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  margin-bottom: 24px;
}

.VAOacademy-certificate-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.VAOacademy-certificate-progress-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.VAOacademy-certificate-progress-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--VAOacademy-primary);
}

.VAOacademy-certificate-progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(148, 163, 184, 0.25);
  border-radius: 9999px;
  overflow: hidden;
}

.VAOacademy-certificate-progress-fill {
  height: 100%;
  background: var(--VAOacademy-primary-gradient);
  border-radius: inherit;
  transition: width 0.4s ease;
}

.VAOacademy-certificate-message {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  border-left: 5px solid transparent;
}

.VAOacademy-certificate-message h5 {
  font-size: 18px;
  margin-bottom: 12px;
}

.VAOacademy-certificate-message p {
  font-size: 15px;
  margin-bottom: 12px;
}

.VAOacademy-certificate-message ul {
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
}

.VAOacademy-certificate-message-warning {
  border-left-color: #f97316;
}

.VAOacademy-certificate-message-success {
  border-left-color: #10b981;
}

.VAOacademy-certificate-message-success .btn {
  margin-top: 12px;
}

/* ════════════════════════════════════════════════════════════════
   VAOne Brand Theme — VAOacademy Client Area (dark navy + gold)
   Append to the BOTTOM of the module's client CSS so it overrides.
   Rollback: delete this block.
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --vao-navy: #0D1B2A;
  --vao-navy-mid: #1C2E42;
  --vao-navy-light: #243547;
  --vao-gold: #C9A84C;
  --vao-gold-light: #E8C97A;
  --vao-gold-pale: #F5EDD4;
  --vao-cream: #F8F4EC;
  --vao-steel: #8A9BB0;
  --vao-steel-light: #B8C4D0;
  --vao-border-gold: rgba(201, 168, 76, 0.3);
  --vao-border-gold-soft: rgba(201, 168, 76, 0.15);
}

/* ── 1. Page fields: courses list, course details, player ── */
.VAOacademy-courses-page,
.tw-bg-gray-50,
.VAOacademy-player-layout {
  background: var(--vao-navy) !important;
  font-family: 'DM Sans', sans-serif;
  color: var(--vao-steel-light);
}

/* ── 2. Cards & panels → navy-mid with soft gold border ── */
.VAOacademy-courses-page .panel_s,
.tw-bg-gray-50 .panel_s,
.VAOacademy-player-layout .panel_s,
.VAOacademy-course-card,
.VAOacademy-my-course-card,
.VAOacademy-sidebar,
.VAOacademy-course-main,
.VAOacademy-lesson-progress-card,
.VAOacademy-course-info-card,
.VAOacademy-filter-card,
.tw-bg-gray-50 section.tw-rounded-lg {
  background: var(--vao-navy-mid) !important;
  border: 1px solid var(--vao-border-gold-soft) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  color: var(--vao-steel-light);
}

/* ── 3. Typography: serif display headings, steel body ── */
.tw-bg-gray-50 h1,
.tw-bg-gray-50 h2,
.VAOacademy-courses-page h1,
.VAOacademy-my-courses-header h1,
.VAOacademy-welcome-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 400 !important;
  color: var(--vao-cream) !important;
  letter-spacing: -0.3px;
}
.tw-bg-gray-50 h3, .tw-bg-gray-50 h4, .tw-bg-gray-50 h5,
.VAOacademy-player-layout h3, .VAOacademy-player-layout h4,
.VAOacademy-course-title,
.VAOacademy-lesson-title,
.VAOacademy-section-title,
.VAOacademy-modal-title,
.VAOacademy-quiz-empty h4 {
  color: var(--vao-cream) !important;
}
.tw-bg-gray-50 p,
.tw-bg-gray-50 .tw-text-gray-700,
.tw-bg-gray-50 .tw-text-gray-600,
.tw-bg-gray-50 .tw-text-gray-500,
.VAOacademy-summary-content,
.VAOacademy-text-content,
.VAOacademy-lesson-meta,
.VAOacademy-instructor-name,
.VAOacademy-quiz-info {
  color: var(--vao-steel) !important;
}

/* Gold eyebrow treatment for small uppercase labels */
.VAOacademy-progress-label,
.VAOacademy-section-lesson-count,
.VAOacademy-lesson-duration {
  color: var(--vao-steel) !important;
  letter-spacing: 0.5px;
}

/* ── 4. Buttons: gold fill + navy text (site CTA style) ── */
.tw-bg-gray-50 .btn-primary,
.VAOacademy-courses-page .btn-primary,
.VAOacademy-player-layout .btn-primary,
.VAOacademy-btn-primary,
.VAOacademy-btn-continue {
  background: var(--vao-gold) !important;
  border: 1px solid var(--vao-gold) !important;
  color: var(--vao-navy) !important;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 4px;
  transition: background .2s ease, color .2s ease;
}
.tw-bg-gray-50 .btn-primary:hover,
.VAOacademy-btn-primary:hover,
.VAOacademy-btn-continue:hover {
  background: var(--vao-gold-light) !important;
  border-color: var(--vao-gold-light) !important;
  color: var(--vao-navy) !important;
  transform: none;
}
/* Secondary / link buttons → outlined gold on navy */
.tw-bg-gray-50 .btn-secondary,
.VAOacademy-player-layout .btn-secondary,
.tw-bg-gray-50 .btn-link,
.VAOacademy-player-layout .btn-link {
  background: transparent !important;
  border: 1px solid var(--vao-border-gold) !important;
  color: var(--vao-gold-light) !important;
  border-radius: 4px;
}
.tw-bg-gray-50 .btn-link { border: 0 !important; }
.tw-bg-gray-50 .btn-secondary:hover,
.tw-bg-gray-50 .btn-link:hover,
.VAOacademy-player-layout .btn-link:hover {
  color: var(--vao-cream) !important;
  background: rgba(201, 168, 76, 0.08) !important;
}

/* ── 5. Course-details tab bar (overrides the light version) ── */
#vaoacademy-tabs {
  border-bottom: 1px solid var(--vao-border-gold) !important;
}
#vaoacademy-tabs .btn {
  color: var(--vao-steel) !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 3px solid transparent !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 500;
}
#vaoacademy-tabs .btn:hover {
  color: var(--vao-cream) !important;
  background: var(--vao-navy-light) !important;
}
#vaoacademy-tabs .btn.VAOacademy-tabs-active {
  color: var(--vao-gold-light) !important;
  border-bottom-color: var(--vao-gold) !important;
  font-weight: 600;
}

/* ── 6. Curriculum / sections accordion ── */
.VAOacademy-course-section,
.VAOacademy-curriculum-section {
  border: 1px solid var(--vao-border-gold-soft) !important;
  border-radius: 8px;
  overflow: hidden;
}
.VAOacademy-section-header,
.VAOacademy-curriculum-section .VAOacademy-section-header {
  background: var(--vao-navy-light) !important;
}
.VAOacademy-section-header:hover { background: #2B3F55 !important; }
.VAOacademy-section-header h4,
.VAOacademy-section-title { color: var(--vao-cream) !important; }
.VAOacademy-section-number { color: var(--vao-gold) !important; }
.VAOacademy-section-icon,
.VAOacademy-accordion-icon { color: var(--vao-gold) !important; }
.VAOacademy-section-lessons,
.VAOacademy-accordion-content { background: var(--vao-navy-mid) !important; }
.VAOacademy-lesson-item { color: var(--vao-steel-light) !important; }
.VAOacademy-lesson-item:hover,
.VAOacademy-lesson-current { color: var(--vao-gold-light) !important; }
.VAOacademy-lesson-item-wrapper:hover { background: var(--vao-navy-light) !important; }
.VAOacademy-lesson-item-wrapper:has(.VAOacademy-lesson-current) {
  background: rgba(201, 168, 76, 0.08) !important;
  border-left-color: var(--vao-gold) !important;
}

/* Requirements / outcomes check icons keep green; text goes steel */
.VAOacademy-info-icon-wrapper { background-color: var(--vao-gold) !important; color: var(--vao-navy) !important; }

/* ── 7. FAQ pane dark overrides (on top of the scoped pane CSS) ── */
#faqs .vao-faq-heading { color: var(--vao-cream); }
#faqs .vao-faq-item {
  background: var(--vao-navy-light);
  border-color: var(--vao-border-gold-soft);
}
#faqs .vao-faq-item.open { border-color: var(--vao-gold); }
#faqs .vao-faq-toggle:hover,
#faqs .vao-faq-item.open .vao-faq-toggle { background: #2B3F55; }
#faqs .vao-faq-question { color: var(--vao-cream); }
#faqs .vao-faq-answer { border-top-color: var(--vao-border-gold-soft); }
#faqs .vao-faq-answer-inner p { color: var(--vao-steel-light); }
#faqs .vao-faq-empty { color: var(--vao-steel); }

/* ── 8. Player: tabs, sidebar, progress ── */
.VAOacademy-player-tabs {
  background: var(--vao-navy-mid) !important;
  border-bottom: 1px solid var(--vao-border-gold) !important;
}
.VAOacademy-tab-btn { color: var(--vao-steel) !important; }
.VAOacademy-tab-btn:hover { color: var(--vao-cream) !important; }
.VAOacademy-tab-active {
  color: var(--vao-gold-light) !important;
  border-bottom-color: var(--vao-gold) !important;
}
.VAOacademy-player-tab-content,
.VAOacademy-lesson-content-wrapper,
.VAOacademy-media-player { background: var(--vao-navy-mid) !important; }
.VAOacademy-sidebar-progress,
.VAOacademy-sidebar-footer { border-color: var(--vao-border-gold-soft) !important; }
.VAOacademy-progress-bar-bg,
.VAOacademy-progress-bar,
.VAOacademy-progress-track,
.VAOacademy-certificate-progress-bar { background: var(--vao-navy-light) !important; }
.VAOacademy-progress-bar-green,
.VAOacademy-progress-fill,
.VAOacademy-progress-bar-fill,
.VAOacademy-certificate-progress-fill {
  background: linear-gradient(90deg, var(--vao-gold) 0%, var(--vao-gold-light) 100%) !important;
}
.VAOacademy-progress-text,
.VAOacademy-progress-percentage { color: var(--vao-steel-light) !important; }
.VAOacademy-checkbox-custom { background: var(--vao-navy-light); border-color: var(--vao-steel); }

/* ── 9. Course cards (catalog + my courses) ── */
.VAOacademy-course-content { color: var(--vao-steel-light); }
.VAOacademy-course-title-link:hover .VAOacademy-course-title { color: var(--vao-gold-light) !important; }
.VAOacademy-pill {
  background: rgba(201, 168, 76, 0.12) !important;
  color: var(--vao-gold-light) !important;
  border: 0.5px solid var(--vao-border-gold);
}
.VAOacademy-search-input {
  background: var(--vao-navy-light);
  border-color: var(--vao-border-gold-soft);
  color: var(--vao-cream);
}
.VAOacademy-search-input::placeholder { color: var(--vao-steel); }
.VAOacademy-search-input:focus {
  border-color: var(--vao-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
.VAOacademy-filter-list .list-group-item,
.VAOacademy-mobile-filter-modal .VAOacademy-mobile-filter-list .list-group-item {
  background: var(--vao-navy-light);
  border-color: var(--vao-border-gold-soft) !important;
  color: var(--vao-steel-light);
}
.VAOacademy-filter-list .list-group-item:hover,
.VAOacademy-filter-list .list-group-item:focus-within {
  border-color: var(--vao-gold) !important;
  background-color: rgba(201, 168, 76, 0.08) !important;
}

/* ── 10. Cart icon, badges, empty states ── */
.VAOacademy-fixed-cart-icon {
  background-color: var(--vao-gold) !important;
  color: var(--vao-navy) !important;
}
.VAOacademy-status-completed { background-color: var(--vao-gold) !important; color: var(--vao-navy) !important; }
.VAOacademy-empty-icon { background-color: var(--vao-navy-light) !important; }
.VAOacademy-empty-state, .VAOacademy-quiz-empty { color: var(--vao-steel) !important; }
.VAOacademy-quiz-empty {
  background: var(--vao-navy-mid) !important;
  border-color: var(--vao-border-gold-soft) !important;
}

/* ── 11. Tailwind utility neutralizers inside academy pages ── */
.tw-bg-gray-50 .tw-border-gray-100 { border-color: var(--vao-border-gold-soft) !important; }
.tw-bg-gray-50 .tw-text-neutral-800,
.tw-bg-gray-50 .tw-text-gray-800 { color: var(--vao-cream) !important; }
.tw-bg-gray-50 .tw-bg-transparent { background: transparent !important; }
