@charset "UTF-8";
/* ========================================
   SkillPulse LMS Variables
   ======================================== */
/* ========================================
   CSS Custom Properties (for use in CSS)
   ======================================== */
:root {
  --splms-primary: #7e75ff;
  --splms-primary-dark: #6b5fff;
  --splms-primary-light: #e8e6ff;
  --splms-secondary: #2c3e50;
  --splms-accent: #00d084;
  --splms-success: #10b981;
  --splms-warning: #ff6900;
  --splms-danger: #e74c3c;
  --splms-red: #ef4444;
  --splms-gray-50: #f9fafb;
  --splms-gray-100: #f3f4f6;
  --splms-gray-200: #e5e7eb;
  --splms-gray-300: #d1d5db;
  --splms-gray-400: #9ca3af;
  --splms-gray-500: #6b7280;
  --splms-gray-600: #475569;
  --splms-gray-700: #374151;
  --splms-gray-800: #1f2937;
  --splms-gray-900: #111827;
  --splms-blue-50: #eff6ff;
  --splms-blue-100: #dbeafe;
  --splms-blue-600: #2563eb;
  --splms-green-100: #dcfce7;
  --splms-green-600: #16a34a;
  --splms-yellow-100: #fef3c7;
  --splms-yellow-600: #d97706;
  --splms-red-50: #fef2f2;
  --splms-red-100: #fee2e2;
  --splms-red-500: #ef4444;
  --splms-red-600: #dc2626;
  --splms-purple-50: #f3f2ff;
  --splms-purple-100: #e8e6ff;
  --splms-purple-200: #d1c7ff;
  --splms-purple-300: #b8a9ff;
  --splms-purple-400: #9f8bff;
  --splms-purple-500: #7e75ff;
  --splms-purple-600: #6b5fff;
  --splms-purple-700: #5b52e6;
  --splms-purple-800: #4a41cc;
  --splms-purple-900: #3a31b3;
  --splms-indigo-500: #6366f1;
  --splms-indigo-600: #5b21b6;
  --splms-violet-500: #8b5cf6;
  --splms-white: #ffffff;
  --splms-black: #000000;
  --splms-border: #e5e7eb;
  --splms-border-light: #f3f4f6;
  --splms-border-dark: #d1d5db;
  --splms-container-max-width: 1200px;
  --splms-container-padding: 1rem;
  --splms-font-family-base: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  --splms-font-family-heading: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  --splms-border-radius-sm: 4px;
  --splms-border-radius: 8px;
  --splms-border-radius-lg: 12px;
  --splms-border-radius-xl: 16px;
  --splms-border-radius-full: 9999px;
  --splms-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --splms-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --splms-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --splms-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --splms-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --splms-transition-fast: all 0.15s ease;
  --splms-transition: all 0.2s ease;
  --splms-transition-slow: all 0.3s ease;
  --splms-transition-elastic: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --splms-z-dropdown: 1000;
  --splms-z-sticky: 1020;
  --splms-z-fixed: 1030;
  --splms-z-modal-backdrop: 1040;
  --splms-z-modal: 1050;
  --splms-z-popover: 1060;
  --splms-z-tooltip: 1070;
  --splms-breakpoint-sm: 640px;
  --splms-breakpoint-md: 768px;
  --splms-breakpoint-lg: 1024px;
  --splms-breakpoint-xl: 1280px;
  --splms-breakpoint-2xl: 1536px;
  --splms-font-base: 16px;
  --splms-font-sm: 14px;
  --splms-font-lg: 18px;
  --splms-font-xl: 20px;
  --splms-font-2xl: 24px;
  --splms-space-2: 8px;
  --splms-space-3: 12px;
  --splms-space-4: 16px;
  --splms-space-6: 24px;
  --splms-space-8: 32px;
  --splms-space-12: 48px;
  --splms-header-height: 60px;
  --splms-footer-height: 70px;
  --splms-sidebar-width: 340px;
  --splms-transition-fast: 150ms;
  --splms-transition-base: 200ms;
  --splms-transition-slow: 300ms;
}

/* ========================================
   Responsive Variable Overrides
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --splms-sidebar-width: 300px;
  }
}
@media (max-width: 768px) {
  :root {
    --splms-header-height: 56px;
    --splms-footer-height: auto;
  }
}
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-none {
  display: none;
}

.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-justify-start {
  justify-content: flex-start;
}
.flex-justify-end {
  justify-content: flex-end;
}
.flex-justify-center {
  justify-content: center;
}
.flex-justify-between {
  justify-content: space-between;
}
.flex-justify-around {
  justify-content: space-around;
}
.flex-align-start {
  align-items: flex-start;
}
.flex-align-end {
  align-items: flex-end;
}
.flex-align-center {
  align-items: center;
}
.flex-align-baseline {
  align-items: baseline;
}
.flex-align-stretch {
  align-items: stretch;
}

.m-0 {
  margin: 0rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.ml-0 {
  margin-left: 0rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mx-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.p-0 {
  padding: 0rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pl-0 {
  padding-left: 0rem;
}

.pr-0 {
  padding-right: 0rem;
}

.px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.m-1 {
  margin: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.p-1 {
  padding: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.p-3 {
  padding: 0.75rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.p-4 {
  padding: 1rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pr-4 {
  padding-right: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.p-5 {
  padding: 1.25rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.text-primary {
  color: #7e75ff;
}

.bg-primary {
  background-color: #7e75ff;
}

.text-secondary {
  color: #2c3e50;
}

.bg-secondary {
  background-color: #2c3e50;
}

.text-accent {
  color: #00d084;
}

.bg-accent {
  background-color: #00d084;
}

.text-warning {
  color: #ff6900;
}

.bg-warning {
  background-color: #ff6900;
}

.text-danger {
  color: #e74c3c;
}

.bg-danger {
  background-color: #e74c3c;
}

.text-white {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.rounded {
  border-radius: 8px;
}
.rounded-lg {
  border-radius: 12px;
}
.rounded-full {
  border-radius: 9999px;
}

.btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.btn-primary {
  background-color: #7e75ff;
  color: #ffffff;
  border: 1px solid #7e75ff;
}
.btn-primary:hover {
  text-decoration: none;
  color: #7e75ff;
  background: #ffffff;
}
.btn-secondary {
  background-color: #f3f4f6;
  color: #374151;
  border-color: #d1d5db;
}
.btn-secondary:hover {
  background-color: #e5e7eb;
  color: #1f2937;
}
.btn-outline {
  background-color: transparent;
  border-color: #d1d5db;
}
.btn-outline:hover {
  background-color: #f9fafb;
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-continue {
  background-color: #6b5fff;
  border: 1px solid #6b5fff;
  color: #ffffff;
}
.btn-continue:hover {
  text-decoration: none;
  color: #7e75ff;
  background: #ffffff;
}
.btn:disabled, .btn.disabled {
  opacity: 0.65;
  pointer-events: none;
}
.btn.loading {
  position: relative;
  color: transparent;
}
.btn.loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  margin: -0.5rem 0 0 -0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s linear infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
.splms-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--splms-border);
}
.splms-pagination .pagination-info {
  color: #475569;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.splms-pagination .pagination-links {
  display: flex;
}
.splms-pagination .pagination-links ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers:hover {
  background-color: #f9fafb;
  border-color: #7e75ff;
  color: #7e75ff;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers.current {
  background-color: #7e75ff;
  border-color: #7e75ff;
  color: #ffffff;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers.current:hover {
  background-color: rgb(102.1630434783, 91.5, 255);
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers.current:focus {
  outline: unset;
  box-shadow: unset;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers.dots {
  border: none;
  background: none;
  pointer-events: none;
  color: #9ca3af;
  font-weight: 600;
  width: auto;
  padding: 0 0.5rem;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers.prev, .splms-pagination .pagination-links ul.page-numbers .page-numbers.next {
  min-width: auto;
  padding: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  width: 36px;
  height: 36px;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers.prev span, .splms-pagination .pagination-links ul.page-numbers .page-numbers.next span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers.prev span svg, .splms-pagination .pagination-links ul.page-numbers .page-numbers.next span svg {
  width: 24px;
  height: 24px;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers.prev:hover, .splms-pagination .pagination-links ul.page-numbers .page-numbers.next:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers.prev:hover span svg path, .splms-pagination .pagination-links ul.page-numbers .page-numbers.next:hover span svg path {
  stroke: #7e75ff;
}
.splms-pagination .pagination-links ul.page-numbers .page-numbers.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}
.splms-pagination .pagination-links li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
}

@media only screen and (max-width: 640px) {
  .splms-pagination {
    flex-direction: column;
  }
}
.splms-course-filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .splms-course-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
  }
}
.splms-course-filters .course-filters-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .splms-course-filters .course-filters-form {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}
.splms-course-filters .filter-group {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.splms-course-filters .filter-group.filter-pill .filter-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.875rem;
  background: #f9fafb;
  border-radius: 9999px 0 0 9999px;
  border-right: 1px solid #e5e7eb;
  margin: 0;
}
.splms-course-filters .filter-group.filter-pill .filter-label svg {
  width: 16px;
  height: 16px;
  color: #475569;
}
.splms-course-filters .filter-group.filter-pill .filter-label .screen-reader-text {
  position: absolute;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.splms-course-filters .filter-group .filter-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
}
.splms-course-filters .filter-apply-btn,
.splms-course-filters .filter-clear-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-course-filters .filter-apply-btn {
  background-color: #7e75ff;
  color: #ffffff;
  border: 1px solid #7e75ff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.splms-course-filters .filter-apply-btn:hover {
  background-color: #6b5fff;
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .splms-course-filters .filter-apply-btn {
    width: 100%;
  }
}
.splms-course-filters .filter-clear-btn {
  background-color: transparent;
  color: #475569;
  border: 1px solid #d1d5db;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.splms-course-filters .filter-clear-btn:hover {
  background-color: #f9fafb;
  color: #7e75ff;
}
@media (max-width: 640px) {
  .splms-course-filters .filter-clear-btn {
    width: 100%;
    text-align: center;
  }
}

.splms-sidebar-filters .sidebar-filter-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.splms-sidebar-filters .sidebar-filter-header .clear-all-filters {
  font-size: 0.875rem;
  color: #7e75ff;
  text-decoration: none;
  font-weight: 600;
}
.splms-sidebar-filters .sidebar-filter-header .clear-all-filters:hover {
  text-decoration: underline;
}
.splms-sidebar-filters .filter-section:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.splms-sidebar-filters .filter-section.filter-accordion .filter-section-header .filter-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.splms-sidebar-filters .filter-section.filter-accordion .filter-section-header .filter-section-title .filter-icon {
  width: 18px;
  height: 18px;
  color: #7e75ff;
  flex-shrink: 0;
}
.splms-sidebar-filters .filter-section.filter-accordion .filter-section-header .filter-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.splms-sidebar-filters .filter-section.filter-accordion .filter-section-header .accordion-arrow {
  width: 16px;
  height: 16px;
  color: #6b7280;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.splms-sidebar-filters .filter-section.filter-accordion .filter-section-header[aria-expanded=false] .accordion-arrow {
  transform: rotate(-90deg);
}
.splms-sidebar-filters .filter-section.filter-accordion[data-collapsed=true] .filter-section-content {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.splms-sidebar-filters .filter-section.filter-accordion[data-collapsed=true] .filter-section-header {
  margin-bottom: 0;
}
.splms-sidebar-filters .filter-section .filter-section-header .filter-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.splms-sidebar-filters .filter-section .filter-section-header .filter-count-badge {
  background: #7e75ff;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  min-width: 24px;
  text-align: center;
}
.splms-sidebar-filters .filter-section .filter-scrollable-container {
  position: relative;
}
.splms-sidebar-filters .filter-section .filter-scrollable-container .filter-options::-webkit-scrollbar {
  width: 6px;
}
.splms-sidebar-filters .filter-section .filter-scrollable-container .filter-options::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}
.splms-sidebar-filters .filter-section .filter-scrollable-container .filter-options::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.splms-sidebar-filters .filter-section .filter-scrollable-container .filter-options::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
.splms-sidebar-filters .filter-section .filter-scrollable-container .filter-options.filter-tags {
  flex-direction: row;
  flex-wrap: wrap;
}
.splms-sidebar-filters .filter-section .hidden-item {
  display: none !important;
}
.splms-sidebar-filters .filter-section .filter-checkbox-label:not(.hidden-item),
.splms-sidebar-filters .filter-section .filter-tag-label:not(.hidden-item) {
  display: flex !important;
}
.splms-sidebar-filters .filter-section.loading .load-more-btn {
  position: relative;
}
.splms-sidebar-filters .filter-section.loading .load-more-btn::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-top: 2px solid #7e75ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
.splms-sidebar-filters .filter-checkbox-label,
.splms-sidebar-filters .filter-tag-label {
  transition: all 0.3s ease;
}
.splms-sidebar-filters .filter-checkbox-label.loading,
.splms-sidebar-filters .filter-tag-label.loading {
  opacity: 0.5;
  transform: scale(0.98);
}
.splms-sidebar-filters .filter-checkbox-label,
.splms-sidebar-filters .filter-radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.splms-sidebar-filters .filter-checkbox-label:hover,
.splms-sidebar-filters .filter-radio-label:hover {
  background-color: #f9fafb;
}
.splms-sidebar-filters .filter-checkbox-label .filter-checkbox,
.splms-sidebar-filters .filter-checkbox-label .filter-radio,
.splms-sidebar-filters .filter-radio-label .filter-checkbox,
.splms-sidebar-filters .filter-radio-label .filter-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.splms-sidebar-filters .filter-checkbox-label .radiomark,
.splms-sidebar-filters .filter-radio-label .radiomark {
  height: 18px;
  width: 18px;
  background-color: #ffffff;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.splms-sidebar-filters .filter-checkbox-label .radiomark:after,
.splms-sidebar-filters .filter-radio-label .radiomark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.splms-sidebar-filters .filter-checkbox-label .radiomark,
.splms-sidebar-filters .filter-radio-label .radiomark {
  border-radius: 50%;
}
.splms-sidebar-filters .filter-checkbox-label .radiomark:after,
.splms-sidebar-filters .filter-radio-label .radiomark:after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 6px;
  height: 6px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
}
.splms-sidebar-filters .filter-checkbox-label .filter-option-text .filter-count,
.splms-sidebar-filters .filter-radio-label .filter-option-text .filter-count {
  font-size: 0.75rem;
  color: #6b7280;
}
.splms-sidebar-filters .filter-tags .filter-tag-label .filter-tag-checkbox:checked + .tag-text {
  background-color: #7e75ff;
  color: #ffffff;
}
.splms-sidebar-filters .empty-filters-message {
  text-align: center;
  padding: 2rem 1rem;
  color: #6b7280;
  font-style: italic;
}
.splms-sidebar-filters .empty-filters-message .empty-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: 0.5;
}
.splms-sidebar-filters .empty-filters-message p {
  margin: 0;
  font-size: 0.9rem;
}
@media (min-width: 1025px) {
  .splms-sidebar-filters::-webkit-scrollbar {
    width: 6px;
  }
  .splms-sidebar-filters::-webkit-scrollbar-track {
    background: transparent;
  }
  .splms-sidebar-filters::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
  }
  .splms-sidebar-filters::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
  }
}
@media (max-width: 1024px) {
  .splms-sidebar-filters {
    position: static;
    margin-bottom: 2rem;
  }
  .splms-sidebar-filters .sidebar-filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .splms-sidebar-filters .sidebar-filters-form .filter-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 0;
  }
  .splms-sidebar-filters .sidebar-filters-form .filter-actions {
    flex: 1;
    min-width: 200px;
    margin-top: 0;
    border-top: none;
    padding-top: 0;
    display: flex;
    align-items: flex-end;
  }
}
@media (max-width: 768px) {
  .splms-sidebar-filters {
    padding: 1.25rem;
  }
  .splms-sidebar-filters .sidebar-filters-form {
    flex-direction: column;
  }
  .splms-sidebar-filters .sidebar-filters-form .filter-section {
    min-width: auto;
  }
}
@media (max-width: 640px) {
  .splms-sidebar-filters {
    padding: 1rem;
  }
}

/* SkillPulse LMS Authentication Styles */
.splms-main-content {
  margin-top: 0;
}

.splms-auth-container {
  max-width: 500px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.splms-auth-wrapper {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}
.splms-auth-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7e75ff, #6366f1, #8b5cf6);
}

.splms-auth-form {
  width: 100%;
}

.splms-form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.splms-form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.splms-required {
  color: #ef4444;
  margin-left: 0.125rem;
}

.splms-form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.2s ease-in-out;
  background-color: #ffffff;
  color: #1f2937;
  box-sizing: border-box;
}
.splms-form-control:focus {
  outline: unset;
  box-shadow: unset;
}
.splms-form-control:valid, .splms-form-control:invalid {
  border-color: #e5e7eb;
  box-shadow: none;
}

.splms-form-help {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.splms-password-field {
  position: relative;
}
.splms-password-field input {
  padding-right: 3rem;
}

.splms-password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #6b7280;
  padding: 0.25rem;
  border-radius: 4px;
  transition: color 0.2s ease;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splms-password-toggle:hover {
  color: #374151;
}

.splms-password-strength {
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  display: none;
}
.splms-password-strength.very-weak {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.splms-password-strength.weak {
  background-color: #fef3c0;
  color: #d97706;
  border: 1px solid #fed7aa;
}
.splms-password-strength.fair {
  background-color: #fef3c0;
  color: #ca8a04;
  border: 1px solid #fde68a;
}
.splms-password-strength.good {
  background-color: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}
.splms-password-strength.strong {
  background-color: #f0f9ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.splms-user-type-selection {
  margin-bottom: 2rem;
}

.splms-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
}
@media (max-width: 480px) {
  .splms-radio-group {
    grid-template-columns: 1fr;
  }
}

.splms-radio-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #ffffff;
}
.splms-radio-option:hover {
  border-color: #7e75ff;
  background-color: #fafbff;
}
.splms-radio-option input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.splms-radio-option input[type=radio]:checked + .splms-radio-mark {
  background-color: #7e75ff;
  border-color: #7e75ff;
}
.splms-radio-option input[type=radio]:checked + .splms-radio-mark::after {
  display: block;
}
.splms-radio-option input[type=radio]:checked ~ .splms-radio-content {
  color: #7e75ff;
}

.splms-radio-mark {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: all 0.2s ease;
}
.splms-radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  display: none;
}

.splms-radio-content {
  flex: 1;
  transition: color 0.2s ease;
}
.splms-radio-content strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
.splms-radio-content small {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.4;
}

.splms-checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #374151;
}
.splms-checkbox-label input[type=checkbox]:checked + .splms-checkbox-mark {
  background: #7e75ff;
  border-color: #7e75ff;
}
.splms-checkbox-label input[type=checkbox]:checked + .splms-checkbox-mark::after {
  display: block;
}

.splms-checkbox-mark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  margin: 0;
}
.splms-checkbox-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}

.splms-terms-link,
.splms-privacy-link {
  color: #7e75ff;
  text-decoration: none;
  font-weight: 500;
}
.splms-terms-link:hover,
.splms-privacy-link:hover {
  text-decoration: underline;
}

.splms-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.splms-forgot-password-link {
  color: #7e75ff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.splms-forgot-password-link:hover {
  color: #6366f1;
  text-decoration: underline;
}

.splms-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
}
.splms-auth-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.splms-auth-btn-secondary {
  background: #6b7280;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.splms-auth-btn-secondary:hover {
  background: #4b5563;
}

.splms-btn-loader {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.splms-spinner {
  width: 1rem;
  height: 1rem;
  animation: skillpulse-spin 1s linear infinite;
}

.splms-spinner-path {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: skillpulse-dash 1.5s ease-in-out infinite;
}

@keyframes skillpulse-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes skillpulse-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.splms-resend-activation-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}
.splms-resend-activation-btn:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
}

.splms-form-messages {
  margin-top: 1rem;
}

.splms-form-message {
  padding: 0.875rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  display: none;
}
.splms-form-message.show {
  display: block;
}

.splms-form-success {
  color: #166534;
  font-size: 14px;
  line-height: 20px;
}

.splms-form-error {
  color: #dc2626;
  font-size: 14px;
  line-height: 20px;
}

.splms-form-warning {
  color: #d97706;
  font-size: 14px;
  line-height: 20px;
}

.splms-message-content {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.splms-message-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.splms-message-text {
  flex: 1;
}

.splms-auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
}
.splms-auth-modal.is-open {
  display: block;
}
.splms-auth-modal .splms-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10001;
  animation: authFadeIn 0.2s ease-out;
}
.splms-auth-modal .splms-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10002;
  animation: authSlideUp 0.3s ease-out;
}
.splms-auth-modal .splms-modal-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.splms-auth-modal .splms-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}
.splms-auth-modal .splms-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s ease;
}
.splms-auth-modal .splms-modal-close:hover {
  color: #374151;
}
.splms-auth-modal .splms-modal-body {
  padding: 1.5rem;
}
.splms-auth-modal .splms-modal-body p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.splms-auth-modal .splms-modal-body .splms-form-group {
  margin-bottom: 1.25rem;
}
.splms-auth-modal .splms-modal-body .splms-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}
.splms-auth-modal .splms-modal-body .splms-form-group label .required {
  color: #dc2626;
}
.splms-auth-modal .splms-modal-body .splms-form-group textarea,
.splms-auth-modal .splms-modal-body .splms-form-group input[type=number],
.splms-auth-modal .splms-modal-body .splms-form-group input[type=text] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.splms-auth-modal .splms-modal-body .splms-form-group textarea:focus,
.splms-auth-modal .splms-modal-body .splms-form-group input[type=number]:focus,
.splms-auth-modal .splms-modal-body .splms-form-group input[type=text]:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.splms-auth-modal .splms-modal-body .splms-form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.splms-auth-modal .splms-modal-body .splms-form-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes authSlideUp {
  from {
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
.splms-user-account {
  max-width: 400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

.splms-user-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.splms-user-avatar {
  margin-right: 1rem;
}
.splms-user-avatar img {
  border-radius: 50%;
}

.splms-user-details h3 {
  margin: 0 0 0.5rem 0;
  color: #1f2937;
}

.splms-user-email {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0 0 0.5rem 0;
}

.splms-user-role {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.splms-role-instructor {
  background-color: #f0f9ff;
  color: #0284c7;
}

.splms-role-student {
  background-color: #f0fdf4;
  color: #16a34a;
}

.splms-user-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.splms-already-logged-in {
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.splms-already-logged-in p {
  margin-bottom: 1.5rem;
  color: #374151;
}

@media (max-width: 640px) {
  .splms-auth-container {
    margin: 1rem auto;
    padding: 0 0.5rem;
  }
  .splms-auth-wrapper {
    padding: 1.5rem;
  }
  .splms-auth-header h2 {
    font-size: 1.5rem;
  }
  .splms-form-group {
    margin-bottom: 1.25rem;
  }
  .splms-auth-modal .splms-modal-content {
    max-width: 95%;
    margin: 0.5rem;
  }
  .splms-auth-modal .splms-modal-header,
  .splms-auth-modal .splms-modal-body {
    padding: 1rem;
  }
  .splms-auth-modal .splms-modal-header {
    padding-bottom: 0.75rem;
  }
}
/* ========================================
   SkillPulse LMS Signup Page - Clean Modern Design
   Minimal, elegant, responsive onboarding style
   All styles scoped under .splms-signup-page to prevent conflicts
   ======================================== */
@keyframes splms-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes splms-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.splms-signup-container {
  max-width: 500px;
  width: 100%;
}

.splms-signup-page {
  background: linear-gradient(90deg, #E8ECF4 100%, #F1F3F9 0%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: calc(100dvh - 48px);
  height: auto;
  margin: 0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.splms-signup-page .splms-signup-wrapper {
  width: 100%;
  padding: 34px 24px;
  background: linear-gradient(135deg, #F8F9FF 70.71%, #F0F2FF 0%);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.0784313725);
  border-radius: 12px;
  margin: auto;
  border: 1px solid #E1E5F0;
  animation: fadeIn 0.4s ease-in-out;
}
.splms-signup-page .splms-signup-wrapper .splms-auth-header {
  margin-bottom: 32px;
}
.splms-signup-page .splms-signup-wrapper .splms-auth-header h2 {
  color: #7e75ff;
  font-size: 34px;
  line-height: 42px;
  font-weight: 700;
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
.splms-signup-page .splms-signup-wrapper .splms-auth-header p {
  color: #374151;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  font-weight: 400;
  text-align: center;
}

.splms-form-row {
  display: flex;
  column-gap: 16px;
}

.splms-form-group {
  margin-bottom: 16px;
  position: relative;
  width: 100%;
}
.splms-form-group .splms-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 20px;
  color: #374151;
}
.splms-form-group .splms-form-control {
  width: 100%;
  padding: 0 16px;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.2s ease;
  background-color: transparent;
  color: #111827;
  box-sizing: border-box;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.splms-form-group .splms-password-field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  z-index: 1;
}
.splms-form-group .splms-password-field .splms-form-control {
  padding-right: 40px;
  width: 100%;
  background: #fff;
  position: relative;
}
.splms-form-group .splms-password-field .splms-form-control:focus {
  outline: unset;
  box-shadow: unset;
  border: 1px solid #c0c0c0;
}
.splms-form-group .splms-password-field .splms-password-toggle {
  padding: 0;
  width: 24px;
  height: 24px;
  background: transparent;
}
.splms-form-group .splms-password-field .splms-password-toggle:hover {
  background: transparent;
}
.splms-form-group .splms-password-field .splms-password-toggle svg {
  width: 16px;
  height: 16px;
}
.splms-form-group .splms-checkbox-label {
  position: relative;
  padding-left: 24px;
}
.splms-form-group .splms-checkbox-label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.splms-form-group .splms-checkbox-label .splms-checkbox-mark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  margin: 0;
}
.splms-form-group .splms-checkbox-label .splms-checkbox-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}
.splms-form-group .splms-checkbox-label .splms-checkbox-text {
  color: #111827;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.splms-form-group .splms-checkbox-label .splms-checkbox-text a {
  color: #7e75ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.splms-form-group .splms-checkbox-label .splms-checkbox-text a:hover {
  text-decoration: underline;
  color: #111827;
}
.splms-form-group .splms-checkbox-label input[type=checkbox]:checked + .splms-checkbox-mark {
  background: #7e75ff;
  border-color: #7e75ff;
}
.splms-form-group .splms-checkbox-label input[type=checkbox]:checked + .splms-checkbox-mark::after {
  display: block;
}
.splms-form-group .splms-auth-btn {
  display: flex;
  width: 100%;
  background: #6366F1;
  padding: 9px 15px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 0;
  border-radius: 8px;
  border: 1px solid #6366F1;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.splms-form-group .splms-auth-btn:hover {
  background: transparent;
  color: #6366F1;
}

.splms-auth-footer {
  text-align: center;
  margin-top: 16px;
}
.splms-auth-footer p {
  color: #6b7280;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.splms-auth-footer p a {
  color: #7e75ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.splms-auth-footer p a:hover {
  text-decoration: underline;
  color: #111827;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 767px) {
  .splms-signup-page .splms-signup-wrapper .splms-auth-header h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
/* ========================================
   Signup Success Page Styles
   Clean, centered design for post-registration
   ======================================== */
.splms-signup-page .splms-success-wrapper {
  text-align: center;
  max-width: 600px;
  padding: 48px 32px;
}
.splms-signup-page .splms-success-wrapper .splms-success-icon {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.splms-signup-page .splms-success-wrapper .splms-success-icon svg {
  width: 80px;
  height: 80px;
  drop-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
}
.splms-signup-page .splms-success-wrapper .splms-success-header {
  margin-bottom: 40px;
}
.splms-signup-page .splms-success-wrapper .splms-success-header h1 {
  color: #111827;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  margin-top: 0;
}
.splms-signup-page .splms-success-wrapper .splms-success-header p {
  color: #6B7280;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.splms-signup-page .splms-success-wrapper .splms-info-section {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 32px;
  gap: 16px;
}
.splms-signup-page .splms-success-wrapper .splms-info-section .splms-section-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #F3F4F6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.splms-signup-page .splms-success-wrapper .splms-info-section .splms-section-icon svg {
  width: 24px;
  height: 24px;
  color: #6B7280;
}
.splms-signup-page .splms-success-wrapper .splms-info-section .splms-section-content {
  flex: 1;
}
.splms-signup-page .splms-success-wrapper .splms-info-section .splms-section-content h2 {
  color: #111827;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px 0;
}
.splms-signup-page .splms-success-wrapper .splms-info-section .splms-section-content p {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #E5E7EB;
  gap: 16px;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #FEF3C7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-icon svg {
  width: 20px;
  height: 20px;
  color: #D97706;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content {
  flex: 1;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content h2 {
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px 0;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content p {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px 0;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content .splms-resend-form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content .splms-resend-form .splms-email-input {
  flex: 1;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content .splms-resend-form .splms-email-input input[type=email] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content .splms-resend-form .splms-email-input input[type=email]:focus {
  outline: none;
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content .splms-resend-form .splms-email-input input[type=email]::placeholder {
  color: #9CA3AF;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content .splms-resend-form .splms-resend-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #6366F1;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content .splms-resend-form .splms-resend-btn:hover {
  background: #5855EB;
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content .splms-resend-form .splms-resend-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}
.splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content .splms-resend-form .splms-resend-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .splms-signup-page .splms-success-wrapper {
    padding: 32px 24px;
  }
  .splms-signup-page .splms-success-wrapper .splms-success-header {
    margin-bottom: 32px;
  }
  .splms-signup-page .splms-success-wrapper .splms-success-header h1 {
    font-size: 28px;
  }
  .splms-signup-page .splms-success-wrapper .splms-success-header p {
    font-size: 15px;
  }
  .splms-signup-page .splms-success-wrapper .splms-info-section,
  .splms-signup-page .splms-success-wrapper .splms-resend-section {
    flex-direction: column;
    text-align: center;
  }
  .splms-signup-page .splms-success-wrapper .splms-info-section .splms-section-icon,
  .splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-icon {
    align-self: center;
    margin-bottom: 12px;
    margin-top: 0;
  }
  .splms-signup-page .splms-success-wrapper .splms-info-section .splms-section-content,
  .splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content {
    text-align: center;
  }
  .splms-signup-page .splms-success-wrapper .splms-info-section .splms-section-content .splms-resend-form,
  .splms-signup-page .splms-success-wrapper .splms-resend-section .splms-section-content .splms-resend-form {
    flex-direction: column;
    gap: 16px;
  }
}
@media only screen and (max-width: 512px) {
  .splms-form-row {
    flex-wrap: wrap;
  }
}
/* ========================================
   Activation Form - Minimal Additional Styles
   Reusing existing signup form patterns
   ======================================== */
.splms-account-details-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}
.splms-account-details-header svg {
  color: #6B7280;
  flex-shrink: 0;
}
.splms-account-details-header h3 {
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.splms-readonly {
  background-color: #F9FAFB;
  color: #374151;
  cursor: default;
  border: 1px solid #E5E7EB;
  font-weight: 500;
}
.splms-readonly:focus {
  border-color: #E5E7EB;
  box-shadow: none;
}

@media only screen and (max-width: 767px) {
  .splms-account-details-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  .splms-account-details-header h3 {
    font-size: 16px;
  }
  .splms-account-details-header svg {
    width: 18px;
    height: 18px;
  }
  .splms-readonly {
    font-size: 14px;
  }
}
.splms-message-box {
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  text-align: center;
}
.splms-message-box.splms-error {
  background: #FEF2F2;
  border-left: 4px solid #EF4444;
}
.splms-message-box.splms-info {
  background: #F0F9FF;
  border-left: 4px solid #3B82F6;
}
.splms-message-box h3 {
  color: #111827;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
}
.splms-message-box p {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 12px 0;
}
.splms-message-box p:last-child {
  margin-bottom: 0;
}
.splms-message-box .splms-example-code {
  margin: 16px 0;
  padding: 12px;
  background: #F3F4F6;
  border-radius: 6px;
}
.splms-message-box .splms-example-code code {
  font-size: 12px;
  color: #374151;
  word-break: break-all;
  font-family: monospace;
}

/**
 * Modal Styles
 *
 * Base modal styling for instructor application and other modals
 *
 * @package SkillPulse_LMS
 * @since [SPLMS_VERSION]
 */
.splms-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.splms-modal.is-open {
  display: block;
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10001;
  animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
  from {
    transform: translate(-50%, -40%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    border-radius: 12px;
  }
}

.modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
}

.modal-title-section {
  flex: 1;
}

.modal-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}
@media (max-width: 768px) {
  .modal-title {
    font-size: 1.25rem;
  }
}

.modal-subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: #6B7280;
  font-weight: 400;
}

.modal-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #6B7280;
  transition: all 0.2s;
  border-radius: 6px;
  margin: -0.5rem -0.5rem -0.5rem 0;
}
.modal-close:hover {
  background: #F3F4F6;
  color: #111827;
}
.modal-close svg {
  display: block;
}

.modal-body {
  padding: 1.5rem 2rem 2rem;
}
@media (max-width: 768px) {
  .modal-body {
    padding: 1.5rem;
  }
}

.modal-loading {
  text-align: center;
  padding: 3rem 2rem;
}
.modal-loading .spinner {
  border: 3px solid #E5E7EB;
  border-top-color: #2A7AE4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
.modal-loading p {
  margin: 0;
  color: #6B7280;
  font-size: 0.875rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.splms-completion-modal:not(.splms-modal-visible) .modal-content {
  transform: translateY(20px);
  opacity: 0;
}
.splms-completion-modal.splms-modal-visible .modal-content {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s ease;
}
.splms-completion-modal .modal-header {
  flex-shrink: 0;
  text-align: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  background: #ffffff;
  z-index: 10;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.splms-completion-modal .modal-header .modal-header-content .celebration-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  animation: bounce 0.6s ease;
}
.splms-completion-modal .modal-header .modal-header-content .celebration-icon.celebration-bounce {
  animation: bounce 0.6s ease;
}
.splms-completion-modal .modal-header .modal-header-content h2 {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.splms-completion-modal .modal-header .modal-header-content .modal-subtitle {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.splms-completion-modal .modal-header .modal-header-content .modal-subtitle strong {
  color: #1f2937;
  font-weight: 600;
}
.splms-completion-modal .modal-header .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 0.5rem;
  cursor: pointer;
  color: #6b7280;
  border-radius: 8px;
  transition: all 0.2s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splms-completion-modal .modal-header .modal-close:hover {
  background: #f3f4f6;
  color: #374151;
  border-color: #d1d5db;
}
.splms-completion-modal .modal-header .modal-close svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .splms-completion-modal .modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  .splms-completion-modal .modal-header .modal-header-content .celebration-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .splms-completion-modal .modal-header .modal-header-content h2 {
    font-size: 1.375rem;
  }
  .splms-completion-modal .modal-header .modal-header-content .modal-subtitle {
    font-size: 0.9rem;
    max-width: 95%;
  }
  .splms-completion-modal .modal-header .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
  }
  .splms-completion-modal .modal-header .modal-close svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .splms-completion-modal .modal-header {
    padding: 1.25rem 1rem 0.75rem;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .splms-completion-modal .modal-header .modal-header-content .celebration-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .splms-completion-modal .modal-header .modal-header-content h2 {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .splms-completion-modal .modal-header .modal-header-content .modal-subtitle {
    font-size: 0.875rem;
    max-width: 100%;
    line-height: 1.4;
  }
  .splms-completion-modal .modal-header .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
  }
  .splms-completion-modal .modal-header .modal-close svg {
    width: 16px;
    height: 16px;
  }
}
.splms-completion-modal .modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  min-height: 200px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f8fafc;
}
.splms-completion-modal .modal-body::-webkit-scrollbar {
  width: 6px;
}
.splms-completion-modal .modal-body::-webkit-scrollbar-track {
  background: #f8fafc;
}
.splms-completion-modal .modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
.splms-completion-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.splms-completion-modal .modal-body .modal-content-inner {
  padding: 1.5rem 2rem 2rem;
}
@media (max-width: 640px) {
  .splms-completion-modal .modal-body .modal-content-inner {
    padding: 1rem 1.5rem 1.5rem;
  }
}
.splms-completion-modal .modal-footer {
  flex-shrink: 0;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 2rem;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .splms-completion-modal .modal-footer {
    padding: 1rem 1.5rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
@media (max-width: 480px) {
  .splms-completion-modal .modal-footer {
    padding: 1rem;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
.splms-completion-modal .modal-footer .modal-footer-content .footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 1rem;
  text-align: center;
}
.splms-completion-modal .modal-footer .modal-footer-content .action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .splms-completion-modal .modal-footer .modal-footer-content .action-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .splms-completion-modal .modal-footer .modal-footer-content .action-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.splms-completion-modal .modal-footer .modal-footer-content .action-buttons .action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  min-width: 140px;
  justify-content: center;
  font-size: 0.875rem;
  border: 1px solid transparent;
}
@media (max-width: 768px) {
  .splms-completion-modal .modal-footer .modal-footer-content .action-buttons .action-btn {
    min-width: auto;
    flex: 1;
    padding: 0.75rem 1rem;
  }
}
@media (max-width: 480px) {
  .splms-completion-modal .modal-footer .modal-footer-content .action-buttons .action-btn {
    min-width: 100%;
    padding: 0.875rem 1rem;
    flex: none;
  }
}
.splms-completion-modal .modal-footer .modal-footer-content .action-buttons .action-btn .btn-icon {
  font-size: 1rem;
}
.splms-completion-modal .modal-footer .modal-footer-content .action-buttons .action-btn .btn-text {
  font-size: 0.875rem;
}
.splms-completion-modal .modal-footer .modal-footer-content .action-buttons .action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.splms-completion-modal .completion-stats {
  margin-bottom: 2rem;
}
.splms-completion-modal .completion-stats h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 1rem;
}
.splms-completion-modal .completion-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
@media (max-width: 768px) {
  .splms-completion-modal .completion-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .splms-completion-modal .completion-stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.splms-completion-modal .completion-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}
.splms-completion-modal .completion-stats .stat-item:hover {
  background: #f1f5f9;
  border-color: #d1d5db;
}
.splms-completion-modal .completion-stats .stat-item .stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.splms-completion-modal .completion-stats .stat-item .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}
.splms-completion-modal .completion-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.4;
}
.splms-completion-modal .recommendations {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  margin-bottom: 0;
}
.splms-completion-modal .recommendations h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 1rem;
}
.splms-completion-modal .recommendations .recommendation-list {
  margin: 0;
  padding-left: 1.25rem;
}
.splms-completion-modal .recommendations .recommendation-list li {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.splms-completion-modal .recommendations .recommendation-list li:last-child {
  margin-bottom: 0;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translateY(0);
  }
  40%, 43% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(-5px);
  }
}
/**
 * Reviews Component Styles
 *
 * Comprehensive styling for course reviews system including:
 * - Review summary and rating breakdown
 * - Review list and cards
 * - Review submission modal
 * - Forms and interactions
 * - Loading states and animations
 *
 * @package SkillPulse_LMS
 * @since [SPLMS_VERSION]
 */
.reviews-summary {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
}
.overall-rating .score-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.overall-rating .rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.overall-rating .rating-stars .star {
  font-size: 1.5rem;
  color: #d1d5db;
}
.overall-rating .rating-stars .star.filled {
  color: #fbbf24;
}
.overall-rating .rating-text {
  margin: 0;
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rating-breakdown .rating-bar {
  display: grid;
  grid-template-columns: 4rem 1fr 3rem;
  align-items: center;
  gap: 1rem;
}
.rating-breakdown .rating-bar .rating-label {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
  text-align: right;
}
.rating-breakdown .rating-bar .progress-bar {
  height: 10px;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}
.rating-breakdown .rating-bar .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 9999px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.rating-breakdown .rating-bar .rating-percentage {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
  text-align: right;
}

.reviews-controls {
  margin-bottom: 2rem;
}
.reviews-controls .reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.reviews-controls .reviews-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}
.reviews-controls .reviews-header .reviews-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.reviews-controls .reviews-header .reviews-actions .write-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #7e75ff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.reviews-controls .reviews-header .reviews-actions .write-review-btn svg {
  width: 18px;
  height: 18px;
}
.reviews-controls .reviews-header .reviews-actions .write-review-btn:hover:not(:disabled) {
  background: #6b5fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.reviews-controls .reviews-header .reviews-actions .write-review-btn:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  opacity: 0.6;
}
.reviews-controls .reviews-header .reviews-actions .reviews-filter select.reviews-sort {
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #374151;
  background: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.reviews-controls .reviews-header .reviews-actions .reviews-filter select.reviews-sort:hover {
  border-color: #9ca3af;
}
.reviews-controls .reviews-header .reviews-actions .reviews-filter select.reviews-sort:focus {
  outline: none;
  border-color: #7e75ff;
  box-shadow: 0 0 0 3px rgba(126, 117, 255, 0.1);
}
@media (max-width: 768px) {
  .reviews-controls .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews-controls .reviews-header .reviews-actions {
    width: 100%;
    justify-content: space-between;
  }
}

.splms-reviews-content {
  position: relative;
  min-height: 200px;
}
.splms-reviews-content.loading {
  opacity: 0.6;
  pointer-events: none;
}
.splms-reviews-content.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid #e5e7eb;
  border-top-color: #7e75ff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.reviews-list-container .reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s ease;
}
.review-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}
.review-item.instructor-review {
  border-left: 3px solid #6366f1;
}
.review-item.course-author-review {
  border-left: 3px solid #7e75ff;
  background: linear-gradient(to right, rgba(126, 117, 255, 0.02) 0%, #ffffff 100%);
}
.review-item .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.review-item .review-header .student-info {
  display: flex;
  gap: 1rem;
  flex: 1;
}
.review-item .review-header .student-info .student-avatar {
  flex-shrink: 0;
}
.review-item .review-header .student-info .student-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.review-item .review-header .student-info .student-details {
  flex: 1;
  min-width: 0;
}
.review-item .review-header .student-info .student-details .student-name {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}
.review-item .review-header .student-info .student-details .review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.review-item .review-header .student-info .student-details .review-meta .review-rating {
  display: flex;
  gap: 0.125rem;
}
.review-item .review-header .student-info .student-details .review-meta .review-rating .star {
  font-size: 1rem;
  color: #d1d5db;
}
.review-item .review-header .student-info .student-details .review-meta .review-rating .star.filled {
  color: #fbbf24;
}
.review-item .review-header .student-info .student-details .review-meta .review-rating .star.empty {
  color: #d1d5db;
}
.review-item .review-header .student-info .student-details .review-meta .review-date {
  font-size: 0.875rem;
  color: #6b7280;
}
.review-item .review-header .reviewer-role {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: #f3f4f6;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.review-item .review-header .reviewer-role svg {
  width: 14px;
  height: 14px;
}
.review-item .review-content .review-text {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
}
.review-item .review-content .review-text p {
  margin: 0 0 0.75rem 0;
}
.review-item .review-content .review-text p:last-child {
  margin-bottom: 0;
}
.review-item .review-content .review-text em {
  color: #6b7280;
  font-style: italic;
}
.review-item .review-content .review-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}
.review-item .review-content .review-actions .helpful-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}
.review-item .review-content .review-actions .helpful-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.review-item .review-content .review-actions .helpful-btn:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
.review-item .review-content .review-actions .helpful-btn.active {
  background: #e8e6ff;
  border-color: #7e75ff;
  color: #7e75ff;
}
.review-item .review-content .review-actions .helpful-btn.active svg {
  stroke: #7e75ff;
}
.review-item .review-content .review-actions .helpful-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}
.review-item .review-content .review-actions .helpful-btn.loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 0.5rem;
  border: 2px solid #d1d5db;
  border-top-color: #7e75ff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.review-item .review-content .review-actions .helpful-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.review-item .review-content .review-actions .helpful-btn .helpful-count {
  font-weight: 500;
}
.review-item .instructor-reply {
  margin-top: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-left: 3px solid #7e75ff;
  border-radius: 8px;
}
.review-item .instructor-reply .reply-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.review-item .instructor-reply .reply-header .instructor-avatar {
  flex-shrink: 0;
}
.review-item .instructor-reply .reply-header .instructor-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.review-item .instructor-reply .reply-header .reply-author {
  flex: 1;
}
.review-item .instructor-reply .reply-header .reply-author strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}
.review-item .instructor-reply .reply-header .reply-date {
  font-size: 0.75rem;
  color: #6b7280;
}
.review-item .instructor-reply .reply-content .reply-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #374151;
}
.review-item .instructor-reply .reply-content .reply-text p {
  margin: 0 0 0.5rem 0;
}
.review-item .instructor-reply .reply-content .reply-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .review-item {
    padding: 1rem;
  }
  .review-item .review-header {
    flex-direction: column;
    gap: 0.75rem;
  }
  .review-item .review-header .reviewer-role {
    align-self: flex-start;
  }
}

.load-more-reviews {
  margin-top: 2rem;
  text-align: center;
}
.load-more-reviews .load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: #ffffff;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}
.load-more-reviews .load-more-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}
.load-more-reviews .load-more-btn:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
.load-more-reviews .load-more-btn:hover:not(:disabled) svg {
  transform: translateY(2px);
}
.load-more-reviews .load-more-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}
.load-more-reviews .load-more-btn.loading svg {
  animation: spin 0.8s linear infinite;
}
.load-more-reviews .load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.no-reviews {
  text-align: center;
  padding: 4rem 2rem;
  background: #f9fafb;
  border-radius: 12px;
}
.no-reviews .no-reviews-icon {
  margin-bottom: 1.5rem;
}
.no-reviews .no-reviews-icon svg {
  width: 64px;
  height: 64px;
  stroke: #9ca3af;
}
.no-reviews h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}
.no-reviews p {
  margin: 0 0 1.5rem 0;
  font-size: 0.9375rem;
  color: #475569;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.no-reviews .write-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #7e75ff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.no-reviews .write-review-btn svg {
  width: 18px;
  height: 18px;
}
.no-reviews .write-review-btn:hover {
  background: #6b5fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.login-to-review {
  margin-top: 2rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f3f2ff 0%, #eff6ff 100%);
  border-radius: 12px;
  text-align: center;
}
.login-to-review .login-prompt {
  max-width: 400px;
  margin: 0 auto;
}
.login-to-review .login-prompt svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  stroke: #7e75ff;
}
.login-to-review .login-prompt h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}
.login-to-review .login-prompt p {
  margin: 0 0 1.5rem 0;
  font-size: 0.9375rem;
  color: #475569;
}
.login-to-review .login-prompt .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: #7e75ff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.login-to-review .login-prompt .btn:hover {
  background: #6b5fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.splms-review-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: none;
}
.splms-review-modal.is-open {
  display: block;
}
.splms-review-modal .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-out;
  z-index: 1040;
}
.splms-review-modal .modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1050;
  animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
  from {
    transform: translate(-50%, -45%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .splms-review-modal .modal-container {
    max-width: 95%;
    border-radius: 12px;
  }
}
.splms-review-modal .modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.splms-review-modal .modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.splms-review-modal .modal-header h3 svg {
  width: 20px;
  height: 20px;
  stroke: #7e75ff;
}
.splms-review-modal .modal-header .modal-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: -0.5rem -0.5rem -0.5rem 0;
}
.splms-review-modal .modal-header .modal-close:hover {
  background: #f3f4f6;
  color: #111827;
}
.splms-review-modal .modal-header .modal-close svg {
  display: block;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .splms-review-modal .modal-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  .splms-review-modal .modal-header h3 {
    font-size: 1.25rem;
  }
}
.splms-review-modal .modal-body {
  padding: 1.5rem 2rem 2rem;
}
.splms-review-modal .modal-body .modal-description {
  margin: 0 0 1.5rem 0;
  font-size: 0.9375rem;
  color: #475569;
}
@media (max-width: 768px) {
  .splms-review-modal .modal-body {
    padding: 1.5rem;
  }
}

.course-review-form .form-group {
  margin-bottom: 1.5rem;
}
.course-review-form .form-group:last-of-type {
  margin-bottom: 0;
}
.course-review-form .form-group .form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}
.course-review-form .form-group .form-label svg {
  width: 18px;
  height: 18px;
  stroke: #6b7280;
}
.course-review-form .form-group .form-label .required {
  color: #ef4444;
  margin-left: 0.125rem;
}
.course-review-form .form-group .form-error {
  display: none;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: #fef2f2;
  border-left: 3px solid #ef4444;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #dc2626;
}
.course-review-form .form-group .form-error:not(:empty) {
  display: block;
}
.course-review-form .rating-input .star-rating-input {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
}
.course-review-form .rating-input .star-rating-input .star-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 2rem;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.course-review-form .rating-input .star-rating-input .star-btn:hover, .course-review-form .rating-input .star-rating-input .star-btn.hover {
  color: #fbbf24;
  transform: scale(1.1);
}
.course-review-form .rating-input .star-rating-input .star-btn.active {
  color: #fbbf24;
}
.course-review-form .rating-input .star-rating-input .star-btn:focus {
  outline: 2px solid #7e75ff;
  outline-offset: 2px;
  border-radius: 4px;
}
.course-review-form .rating-input .rating-description {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
  min-height: 1.25rem;
}
.course-review-form .rating-input .rating-labels {
  display: none;
}
.course-review-form .comment-input {
  position: relative;
}
.course-review-form .comment-input textarea {
  width: 100%;
  min-height: 120px;
  padding: 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #111827;
  resize: vertical;
  transition: all 0.2s ease;
  font-family: inherit;
}
.course-review-form .comment-input textarea::placeholder {
  color: #9ca3af;
}
.course-review-form .comment-input textarea:hover {
  border-color: #9ca3af;
}
.course-review-form .comment-input textarea:focus {
  outline: none;
  border-color: #7e75ff;
  box-shadow: 0 0 0 3px rgba(126, 117, 255, 0.1);
}
.course-review-form .comment-input .character-counter {
  margin-top: 0.5rem;
  text-align: right;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}
.course-review-form .comment-input .character-counter.warning {
  color: #d97706;
}
.course-review-form .comment-input .character-counter.limit-reached {
  color: #ef4444;
}
.course-review-form .form-message {
  display: none;
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
}
.course-review-form .form-message:not(:empty) {
  display: block;
}
.course-review-form .form-message.success {
  background: #dcfce7;
  color: #16a34a;
  border-left: 3px solid #16a34a;
}
.course-review-form .form-message.error {
  background: #fef2f2;
  color: #dc2626;
  border-left: 3px solid #ef4444;
}
.course-review-form .form-message.info {
  background: #eff6ff;
  color: #2563eb;
  border-left: 3px solid #2563eb;
}
.course-review-form .form-actions {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}
.course-review-form .form-actions .btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.course-review-form .form-actions .btn svg {
  width: 18px;
  height: 18px;
}
.course-review-form .form-actions .btn.btn-primary {
  background: #7e75ff;
  color: #ffffff;
}
.course-review-form .form-actions .btn.btn-primary:hover:not(.loading) {
  background: #6b5fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.course-review-form .form-actions .btn.btn-primary.loading {
  opacity: 0.7;
  pointer-events: none;
}
.course-review-form .form-actions .btn.btn-primary.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.course-review-form .form-actions .btn.btn-secondary {
  background: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
}
.course-review-form .form-actions .btn.btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}
@media (max-width: 640px) {
  .course-review-form .form-actions .btn {
    flex: auto;
    min-width: 120px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body.splms-modal-open,
body.modal-open {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/**
 * SkillPulse LMS Maintenance Mode Styles
 *
 * Modern, responsive design for maintenance/upgrade pages
 * Optimized for learning platforms with LMS-specific messaging
 */
:root {
  --splms-maintenance-gradient-start: #7e75ff;
  --splms-maintenance-gradient-end: #6b5fff;
  --splms-maintenance-card-bg: #ffffff;
  --splms-maintenance-text-primary: #1f2937;
  --splms-maintenance-text-secondary: #475569;
  --splms-maintenance-accent: #10b981;
  --splms-maintenance-border: #e5e7eb;
  --splms-maintenance-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

.splms-maintenance {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, var(--splms-maintenance-gradient-start) 0%, var(--splms-maintenance-gradient-end) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--splms-maintenance-text-primary);
  line-height: 1.6;
}

.maintenance-container {
  width: 100%;
  max-width: 680px;
  padding: 2rem 1rem;
  margin: 0 auto;
}

.maintenance-content {
  background: var(--splms-maintenance-card-bg);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  text-align: center;
  box-shadow: var(--splms-maintenance-shadow);
  position: relative;
  overflow: hidden;
}
.maintenance-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--splms-maintenance-gradient-start), var(--splms-maintenance-gradient-end));
}

.maintenance-logo {
  margin-bottom: 2rem;
}
.maintenance-logo .lms-icon {
  width: 80px;
  height: 80px;
  color: var(--splms-maintenance-gradient-start);
  filter: drop-shadow(0 4px 12px rgba(126, 117, 255, 0.25));
  animation: float 3s ease-in-out infinite;
}

.maintenance-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--splms-maintenance-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.maintenance-title .upgrade-icon {
  font-size: 2rem;
  animation: rotate 4s linear infinite;
}

.maintenance-message {
  margin-bottom: 2.5rem;
}
.maintenance-message .lead-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--splms-maintenance-text-secondary);
  margin-bottom: 1rem;
  font-weight: 400;
}
.maintenance-message .assurance-text {
  color: var(--splms-maintenance-accent);
  font-size: 1.125rem;
  margin: 0;
}
.maintenance-message .assurance-text strong {
  font-weight: 600;
}

.maintenance-upgrades {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: linear-gradient(145deg, #f9fafb 0%, #fefefe 100%);
  border-radius: 16px;
  border: 1px solid var(--splms-maintenance-border);
}
.maintenance-upgrades .upgrades-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--splms-maintenance-text-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.maintenance-upgrades .upgrades-title .briefcase-icon {
  font-size: 1.5rem;
}
.maintenance-upgrades .maintenance-features-content {
  text-align: left;
  font-size: 1rem;
  color: var(--splms-maintenance-text-secondary);
  line-height: 1.6;
}
.maintenance-upgrades .maintenance-features-content ul, .maintenance-upgrades .maintenance-features-content ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}
.maintenance-upgrades .maintenance-features-content li {
  margin-bottom: 0.5rem;
  position: relative;
}
.maintenance-upgrades .maintenance-features-content ul li::marker {
  color: var(--splms-maintenance-accent);
  font-weight: 700;
}
.maintenance-upgrades .maintenance-features-content ol li::marker {
  color: var(--splms-maintenance-accent);
  font-weight: 600;
}
.maintenance-upgrades .maintenance-features-content p {
  margin: 0.5rem 0;
}
.maintenance-upgrades .maintenance-features-content strong {
  font-weight: 600;
  color: var(--splms-maintenance-text-primary);
}
.maintenance-upgrades .maintenance-features-content em {
  font-style: italic;
}
.maintenance-upgrades .maintenance-features-content a {
  color: var(--splms-maintenance-gradient-start);
  text-decoration: none;
  font-weight: 500;
}
.maintenance-upgrades .maintenance-features-content a:hover {
  text-decoration: underline;
}

.data-safety {
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(145deg, #dcfce7 0%, #f0fdf4 100%);
  border-radius: 16px;
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.data-safety .safety-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--splms-maintenance-text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.data-safety .safety-title .shield-icon {
  font-size: 1.25rem;
}
.data-safety .safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
  text-align: left;
}
.data-safety .safety-list li {
  font-size: 0.9375rem;
  color: var(--splms-maintenance-text-secondary);
  position: relative;
  padding-left: 1.5rem;
}
.data-safety .safety-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--splms-maintenance-accent);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}

.maintenance-contact {
  margin-bottom: 2rem;
}
.maintenance-contact .contact-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--splms-maintenance-text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.maintenance-contact .contact-text .email-icon {
  font-size: 1.25rem;
}
.maintenance-contact .contact-details {
  font-size: 1rem;
  color: var(--splms-maintenance-text-secondary);
  margin: 0;
}
.maintenance-contact .contact-details .email-link {
  color: var(--splms-maintenance-gradient-start);
  text-decoration: none;
  font-weight: 500;
  margin-left: 0.5rem;
}
.maintenance-contact .contact-details .email-link:hover {
  text-decoration: underline;
}

.maintenance-social {
  margin-bottom: 2.5rem;
}
.maintenance-social .social-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--splms-maintenance-text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.maintenance-social .social-text .phone-icon {
  font-size: 1.125rem;
}
.maintenance-social .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.maintenance-social .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f3f4f6;
  color: var(--splms-maintenance-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}
.maintenance-social .social-links a:hover {
  background: var(--splms-maintenance-gradient-start);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(126, 117, 255, 0.3);
}

.maintenance-footer {
  border-top: 1px solid var(--splms-maintenance-border);
  padding-top: 1.5rem;
}
.maintenance-footer .maintenance-timestamp {
  font-size: 0.875rem;
  color: var(--splms-maintenance-text-secondary);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.maintenance-admin-panel {
  margin-top: 1.5rem;
}
.maintenance-admin-panel .admin-notice {
  background: linear-gradient(145deg, #fef3c7 0%, #fffbeb 100%);
  border: 1px solid #fbbf24;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
}
.maintenance-admin-panel .admin-notice .admin-title {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.maintenance-admin-panel .admin-notice .admin-title .tools-icon {
  font-size: 1.125rem;
}
.maintenance-admin-panel .admin-notice .admin-title strong {
  color: #92400e;
}
.maintenance-admin-panel .admin-notice .admin-info {
  font-size: 0.9375rem;
  color: #92400e;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.maintenance-admin-panel .admin-notice .admin-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.maintenance-admin-panel .admin-notice .admin-button {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  background: #f59e0b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.maintenance-admin-panel .admin-notice .admin-button:hover {
  background: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.maintenance-admin-panel .admin-notice .admin-button.secondary {
  background: transparent;
  color: #92400e;
  border: 1px solid #fbbf24;
}
.maintenance-admin-panel .admin-notice .admin-button.secondary:hover {
  background: #fbbf24;
  color: #ffffff;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .maintenance-container {
    padding: 1rem 0.75rem;
  }
  .maintenance-content {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }
  .maintenance-logo .lms-icon {
    width: 60px;
    height: 60px;
  }
  .maintenance-title {
    font-size: 1.875rem;
  }
  .maintenance-title .upgrade-icon {
    font-size: 1.5rem;
  }
  .maintenance-message .lead-text {
    font-size: 1.125rem;
  }
  .maintenance-upgrades {
    padding: 1.5rem 1rem;
  }
  .maintenance-upgrades .maintenance-features-content {
    font-size: 0.9375rem;
  }
  .maintenance-upgrades .maintenance-features-content ul, .maintenance-upgrades .maintenance-features-content ol {
    padding-left: 1.25rem;
  }
  .data-safety {
    padding: 1.25rem 1rem;
  }
  .data-safety .safety-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .maintenance-content {
    padding: 2rem 1.25rem;
  }
  .maintenance-title {
    font-size: 1.625rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .maintenance-upgrades .upgrades-title {
    font-size: 1.25rem;
  }
  .admin-actions {
    flex-direction: column;
  }
  .admin-button {
    justify-content: center;
    width: 100%;
  }
}
@media print {
  .splms-maintenance {
    background: #ffffff !important;
    color: #000000 !important;
  }
  .maintenance-container {
    max-width: none;
  }
  .maintenance-content {
    box-shadow: none !important;
    border: 1px solid #d1d5db !important;
  }
  .maintenance-logo,
  .maintenance-admin-panel,
  .maintenance-social {
    display: none !important;
  }
}
.splms-guest-preview .splms-guest-preview-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.splms-guest-preview .splms-guest-preview-banner .preview-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.splms-guest-preview .splms-guest-preview-banner .preview-banner-content .preview-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.splms-guest-preview .splms-guest-preview-banner .preview-banner-content .preview-text {
  flex: 1;
}
.splms-guest-preview .splms-guest-preview-banner .preview-banner-content .preview-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.splms-guest-preview .splms-guest-preview-banner .preview-banner-content .preview-text p {
  margin: 0 0 1rem 0;
  opacity: 0.9;
  line-height: 1.5;
}
.splms-guest-preview .splms-guest-preview-banner .preview-banner-content .preview-text .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.splms-guest-preview .splms-guest-preview-banner .preview-banner-content .preview-text .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.splms-guest-preview .splms-guest-preview-actions {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}
.splms-guest-preview .splms-guest-preview-actions .preview-notice {
  color: #6c757d;
  margin-bottom: 1rem;
  font-style: italic;
}
.splms-guest-preview .splms-guest-preview-actions .splms-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.splms-guest-preview-notice {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.splms-guest-preview-notice .notice-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.splms-guest-preview-notice .notice-content .notice-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.splms-guest-preview-notice .notice-content .notice-text {
  flex: 1;
}
.splms-guest-preview-notice .notice-content .notice-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.splms-guest-preview-notice .notice-content .notice-text p {
  margin: 0 0 1rem 0;
  opacity: 0.9;
  line-height: 1.5;
}
.splms-guest-preview-notice .notice-content .notice-text .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.splms-guest-preview-notice .notice-content .notice-text .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.curriculum-item.guest-preview {
  border-left: 3px solid #667eea;
  background: rgba(102, 126, 234, 0.05);
}
.curriculum-item.guest-preview .item-title {
  color: #667eea;
  font-weight: 500;
}
.curriculum-item.guest-preview .status-icon.guest-preview {
  color: #667eea;
}
.curriculum-item.guest-preview .preview-btn {
  background: #667eea;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.curriculum-item.guest-preview .preview-btn:hover {
  background: #5a6fd8;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .splms-guest-preview .splms-guest-preview-banner .preview-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .splms-guest-preview .splms-guest-preview-banner .preview-banner-content .preview-icon {
    margin-bottom: 0.5rem;
  }
  .splms-guest-preview-notice .notice-content {
    flex-direction: column;
    text-align: center;
  }
  .splms-guest-preview-notice .notice-content .notice-icon {
    margin-bottom: 0.5rem;
  }
}
.splms-avatar-section {
  margin-bottom: 2rem;
}

.splms-avatar-upload-container {
  position: relative;
  display: inline-block;
}
.splms-avatar-upload-container .splms-avatar-preview {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
}
.splms-avatar-upload-container .splms-avatar-preview:hover {
  border-color: #7e75ff;
}
.splms-avatar-upload-container .splms-avatar-preview:hover .splms-avatar-overlay {
  opacity: 1;
}
.splms-avatar-upload-container .splms-avatar-preview .splms-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.splms-avatar-upload-container .splms-avatar-preview .splms-avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s ease;
}
.splms-avatar-upload-container .splms-avatar-preview .splms-avatar-overlay .camera-icon {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.splms-avatar-upload-container.uploading {
  pointer-events: none;
  opacity: 0.7;
}
.splms-avatar-upload-container.uploading .upload-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
}
.splms-avatar-upload-container.uploading .upload-loading .loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top-color: #7e75ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 8px;
}
.splms-avatar-upload-container.uploading .upload-loading span {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}
.splms-avatar-upload-container .splms-avatar-remove-btn {
  margin-top: 10px;
  font-size: 0.875rem;
}

.avatar-preview-modal,
.avatar-remove-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-preview-modal .avatar-preview-overlay,
.avatar-remove-modal .avatar-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.avatar-preview-modal .avatar-preview-content,
.avatar-remove-modal .avatar-preview-content {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}
.avatar-preview-modal .avatar-preview-header,
.avatar-remove-modal .avatar-preview-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.avatar-preview-modal .avatar-preview-header h3,
.avatar-remove-modal .avatar-preview-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}
.avatar-preview-modal .avatar-preview-header .avatar-preview-close,
.avatar-remove-modal .avatar-preview-header .avatar-preview-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.avatar-preview-modal .avatar-preview-header .avatar-preview-close:hover,
.avatar-remove-modal .avatar-preview-header .avatar-preview-close:hover {
  background: #f3f4f6;
  color: #111827;
}
.avatar-preview-modal .avatar-preview-body,
.avatar-remove-modal .avatar-preview-body {
  padding: 1.5rem;
}
.avatar-preview-modal .avatar-preview-body .avatar-preview-image,
.avatar-remove-modal .avatar-preview-body .avatar-preview-image {
  text-align: center;
  margin-bottom: 1.5rem;
}
.avatar-preview-modal .avatar-preview-body .avatar-preview-image img,
.avatar-remove-modal .avatar-preview-body .avatar-preview-image img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.avatar-preview-modal .avatar-preview-body .avatar-preview-image svg,
.avatar-remove-modal .avatar-preview-body .avatar-preview-image svg {
  margin: 0 auto;
  display: block;
}
.avatar-preview-modal .avatar-preview-body .avatar-preview-info p,
.avatar-remove-modal .avatar-preview-body .avatar-preview-info p {
  margin: 0.5rem 0;
  color: #374151;
  font-size: 0.875rem;
}
.avatar-preview-modal .avatar-preview-body .avatar-preview-info p strong,
.avatar-remove-modal .avatar-preview-body .avatar-preview-info p strong {
  color: #111827;
  font-weight: 600;
}
.avatar-preview-modal .avatar-preview-actions,
.avatar-remove-modal .avatar-preview-actions {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.avatar-preview-modal .avatar-preview-actions button,
.avatar-remove-modal .avatar-preview-actions button {
  min-width: 120px;
}

.avatar-upload-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10001;
  animation: slideInRight 0.3s ease-out;
  max-width: 400px;
}
.avatar-upload-notification.success {
  border-left: 4px solid #10b981;
}
.avatar-upload-notification.error {
  border-left: 4px solid #e74c3c;
}
.avatar-upload-notification.info {
  border-left: 4px solid #2563eb;
}
.avatar-upload-notification span {
  flex: 1;
  color: #111827;
  font-size: 0.875rem;
}
.avatar-upload-notification .close-notification {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.avatar-upload-notification .close-notification:hover {
  background: #f3f4f6;
  color: #111827;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.splms-wishlist-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.splms-wishlist-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
.splms-wishlist-btn.loading {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.splms-wishlist-btn.in-wishlist, .splms-wishlist-btn.active {
  background: #7e75ff;
  border-color: #7e75ff;
  color: #ffffff;
}
.splms-wishlist-btn.in-wishlist:hover, .splms-wishlist-btn.active:hover {
  background: rgb(78.3260869565, 66, 255);
  border-color: rgb(78.3260869565, 66, 255);
}
.splms-wishlist-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.splms-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .splms-cards-grid {
    grid-template-columns: 1fr;
  }
}

.splms-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.splms-card:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.splms-card .splms-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f3f4f6;
}
.splms-card .splms-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splms-card .splms-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.splms-card .splms-card-title {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}
.splms-card .splms-card-title a {
  color: #111827;
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-card .splms-card-title a:hover {
  color: #7e75ff;
}
.splms-card .splms-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.splms-bookmark-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.splms-bookmark-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
.splms-bookmark-btn.loading {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.splms-bookmark-btn.bookmarked, .splms-bookmark-btn.active {
  background: #00d084;
  border-color: #00d084;
  color: #ffffff;
}
.splms-bookmark-btn.bookmarked:hover, .splms-bookmark-btn.active:hover {
  background: rgb(0, 157, 99.6346153846);
  border-color: rgb(0, 157, 99.6346153846);
}
.splms-bookmark-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.splms-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.splms-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.splms-list-item:hover {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}
.splms-list-item a {
  flex: 1;
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.splms-list-item a:hover {
  color: #7e75ff;
}

.splms-bookmark-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.splms-bookmark-item > a {
  flex: 1;
  font-size: 1rem;
}

.course-bookmark {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d1d5db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}
.course-bookmark:hover {
  background: #ffffff;
  transform: scale(1.1);
}
.course-bookmark.bookmarked {
  background: #00d084;
  border-color: #00d084;
  color: #ffffff;
}
.course-bookmark svg {
  width: 20px;
  height: 20px;
}

/**
 * Unified Hero Section Component
 * Used for Courses, Lessons, and Quizzes
 * BEM naming with splms- prefix
 */
.splms-hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.splms-hero--course {
  background: #f4f6ff;
  color: #111827;
}
.splms-hero--lesson {
  background: #f7f4ff;
  color: #111827;
}
.splms-hero--quiz {
  background: #fff7ef;
  color: #111827;
}
.splms-hero--course .splms-hero__breadcrumb a, .splms-hero--lesson .splms-hero__breadcrumb a, .splms-hero--quiz .splms-hero__breadcrumb a {
  color: rgba(55, 65, 81, 0.9);
}
.splms-hero--course .splms-hero__breadcrumb a:hover, .splms-hero--lesson .splms-hero__breadcrumb a:hover, .splms-hero--quiz .splms-hero__breadcrumb a:hover {
  color: #7e75ff;
}
.splms-hero--course .splms-hero__breadcrumb span:not(.splms-hero__breadcrumb-separator), .splms-hero--lesson .splms-hero__breadcrumb span:not(.splms-hero__breadcrumb-separator), .splms-hero--quiz .splms-hero__breadcrumb span:not(.splms-hero__breadcrumb-separator) {
  color: rgba(71, 85, 105, 0.8);
}
.splms-hero--course .splms-hero__breadcrumb-separator, .splms-hero--lesson .splms-hero__breadcrumb-separator, .splms-hero--quiz .splms-hero__breadcrumb-separator {
  color: rgba(107, 114, 128, 0.6);
}
.splms-hero--course .splms-hero__title, .splms-hero--lesson .splms-hero__title, .splms-hero--quiz .splms-hero__title {
  color: #111827;
  text-shadow: none;
}
.splms-hero--course .splms-hero__excerpt, .splms-hero--lesson .splms-hero__excerpt, .splms-hero--quiz .splms-hero__excerpt {
  color: rgba(55, 65, 81, 0.85);
}
.splms-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 2;
}
.splms-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(71, 85, 105, 0.8);
}
.splms-hero__breadcrumb a {
  color: rgba(55, 65, 81, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}
.splms-hero__breadcrumb a:hover {
  color: #7e75ff;
  text-decoration: underline;
}
.splms-hero__breadcrumb-separator {
  color: rgba(107, 114, 128, 0.6);
  margin: 0 0.25rem;
}
.splms-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
}
.splms-hero__title h1 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.splms-hero__subtitle {
  margin: 0.5rem 0 0 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(55, 65, 81, 0.85);
  opacity: 0.9;
}
.splms-hero__excerpt {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(55, 65, 81, 0.85);
  margin: 0;
}
.splms-hero__excerpt p {
  margin: 0 0 0.75rem 0;
}
.splms-hero__excerpt p:last-child {
  margin-bottom: 0;
}
.splms-hero__categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.splms-hero__categories a {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.1) 0%, rgba(126, 117, 255, 0.05) 100%);
  color: #7e75ff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid rgba(126, 117, 255, 0.2);
}
.splms-hero__categories a:hover {
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.15) 0%, rgba(126, 117, 255, 0.1) 100%);
  transform: translateY(-1px);
  border-color: rgba(126, 117, 255, 0.3);
}
.splms-hero__instructor {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  width: fit-content;
}
.splms-hero__instructor:hover {
  transform: translateY(-1px);
}
.splms-hero__instructor-avatar {
  flex-shrink: 0;
}
.splms-hero__instructor-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.splms-hero__instructor-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.splms-hero__instructor-details-label {
  font-size: 0.75rem;
  color: #475569;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.splms-hero__instructor-details-name {
  font-size: 0.9375rem;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.splms-hero__instructor-details-name:hover {
  color: #7e75ff;
}
.splms-hero__meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(229, 231, 235, 0.5);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}
@media (max-width: 640px) {
  .splms-hero__meta-list {
    gap: 0.875rem;
  }
}
.splms-hero__meta-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}
.splms-hero__meta-list-item svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.splms-hero__meta-list-item span {
  color: inherit;
  font-weight: 600;
}
.splms-hero__meta-list-item span.difficulty-beginner {
  color: #10b981;
  font-weight: 600;
}
.splms-hero__meta-list-item span.difficulty-intermediate {
  color: #ff6900;
  font-weight: 600;
}
.splms-hero__meta-list-item span.difficulty-advanced {
  color: #e74c3c;
  font-weight: 600;
}
@media (max-width: 640px) {
  .splms-hero__meta-list-item {
    font-size: 0.8125rem;
  }
  .splms-hero__meta-list-item svg {
    width: 14px;
    height: 14px;
  }
}
.splms-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .splms-hero__meta {
    flex: 1;
  }
  .splms-hero--lesson .splms-hero__meta, .splms-hero--quiz .splms-hero__meta {
    flex: 0 1 auto;
  }
}
.splms-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
  border: 1px solid rgba(229, 231, 235, 0.6);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.splms-hero__meta-item:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(209, 213, 219, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.splms-hero__meta-item svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.splms-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.splms-hero__meta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .splms-hero__meta-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.splms-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .splms-hero__actions {
    margin-left: auto;
    flex-wrap: nowrap;
  }
}
@media (min-width: 768px) {
  .splms-hero--lesson .splms-hero__actions, .splms-hero--quiz .splms-hero__actions {
    margin-left: auto;
  }
}
.splms-hero__button, .splms-hero__share-btn, .splms-hero__wishlist-btn, .splms-hero__bookmark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.6);
  border-radius: 8px;
  color: #374151;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.splms-hero__button:hover, .splms-hero__share-btn:hover, .splms-hero__wishlist-btn:hover, .splms-hero__bookmark-btn:hover {
  background: #f9fafb;
  border-color: rgba(156, 163, 175, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}
.splms-hero__button:active, .splms-hero__share-btn:active, .splms-hero__wishlist-btn:active, .splms-hero__bookmark-btn:active {
  transform: translateY(0);
}
.splms-hero__button.loading, .loading.splms-hero__share-btn, .loading.splms-hero__wishlist-btn, .loading.splms-hero__bookmark-btn {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
.splms-hero__button--primary {
  background: #7e75ff;
  border-color: #7e75ff;
  color: #ffffff;
}
.splms-hero__button--primary:hover {
  background: #6b5fff;
  border-color: #6b5fff;
  color: #ffffff;
}
.splms-hero__button.active, .active.splms-hero__share-btn, .active.splms-hero__wishlist-btn, .active.splms-hero__bookmark-btn, .splms-hero__button.bookmarked, .bookmarked.splms-hero__share-btn, .bookmarked.splms-hero__wishlist-btn, .bookmarked.splms-hero__bookmark-btn, .splms-hero__button.in-wishlist, .in-wishlist.splms-hero__share-btn, .in-wishlist.splms-hero__wishlist-btn, .in-wishlist.splms-hero__bookmark-btn {
  background: #7e75ff;
  border-color: #7e75ff;
  color: #ffffff;
}
.splms-hero__button.active:hover, .active.splms-hero__share-btn:hover, .active.splms-hero__wishlist-btn:hover, .active.splms-hero__bookmark-btn:hover, .splms-hero__button.bookmarked:hover, .bookmarked.splms-hero__share-btn:hover, .bookmarked.splms-hero__wishlist-btn:hover, .bookmarked.splms-hero__bookmark-btn:hover, .splms-hero__button.in-wishlist:hover, .in-wishlist.splms-hero__share-btn:hover, .in-wishlist.splms-hero__wishlist-btn:hover, .in-wishlist.splms-hero__bookmark-btn:hover {
  background: #6b5fff;
  border-color: #6b5fff;
}
.splms-hero__button.active svg, .active.splms-hero__share-btn svg, .active.splms-hero__wishlist-btn svg, .active.splms-hero__bookmark-btn svg, .splms-hero__button.bookmarked svg, .bookmarked.splms-hero__share-btn svg, .bookmarked.splms-hero__wishlist-btn svg, .bookmarked.splms-hero__bookmark-btn svg, .splms-hero__button.in-wishlist svg, .in-wishlist.splms-hero__share-btn svg, .in-wishlist.splms-hero__wishlist-btn svg, .in-wishlist.splms-hero__bookmark-btn svg {
  fill: currentColor;
}
.splms-hero__button svg, .splms-hero__share-btn svg, .splms-hero__wishlist-btn svg, .splms-hero__bookmark-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.splms-hero__course-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .splms-hero__course-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.splms-hero__course-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.splms-hero__course-sidebar {
  position: sticky;
  top: 2rem;
}
@media (max-width: 1024px) {
  .splms-hero__course-sidebar {
    position: static;
  }
}
.splms-hero__enrollment-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.8);
}
.splms-hero__enrollment-card .course-price-display {
  text-align: center;
  margin-bottom: 1.5rem;
}
.splms-hero__enrollment-card .course-price-display .price-free,
.splms-hero__enrollment-card .course-price-display .price-current,
.splms-hero__enrollment-card .course-price-display .price-sale {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.splms-hero__enrollment-card .course-price-display .price-free {
  color: #10b981;
}
.splms-hero__enrollment-card .course-price-display .price-current {
  color: #111827;
}
.splms-hero__enrollment-card .course-price-display .price-sale {
  color: #e74c3c;
}
.splms-hero__enrollment-card .course-price-display .price-regular {
  color: #6b7280;
  text-decoration: line-through;
  font-size: 1.25rem;
  display: inline-block;
  margin-left: 0.5rem;
}
.splms-hero__enrollment-card .btn-primary,
.splms-hero__enrollment-card .btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #7e75ff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: block;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(126, 117, 255, 0.2);
}
.splms-hero__enrollment-card .btn-primary:hover,
.splms-hero__enrollment-card .btn:hover {
  background: #6b5fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.3);
  text-decoration: none;
}
.splms-hero__enrollment-card .btn-primary:active,
.splms-hero__enrollment-card .btn:active {
  transform: translateY(0);
}
.splms-hero__enrollment-card .course-actions-secondary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}
.splms-hero__enrollment-card .course-actions-secondary .btn-secondary {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.splms-hero__enrollment-card .course-actions-secondary .btn-secondary:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.splms-hero__enrollment-card .course-actions-secondary .btn-secondary.in-wishlist, .splms-hero__enrollment-card .course-actions-secondary .btn-secondary.active {
  background: #7e75ff;
  border-color: #7e75ff;
  color: #ffffff;
}
.splms-hero__enrollment-card .course-actions-secondary .btn-secondary.in-wishlist:hover, .splms-hero__enrollment-card .course-actions-secondary .btn-secondary.active:hover {
  background: #6b5fff;
  border-color: #6b5fff;
}
.splms-hero__enrollment-card .course-actions-secondary .btn-secondary svg {
  width: 1.125rem;
  height: 1.125rem;
}
.splms-hero__enrollment-card .enrollment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #ffffff;
}
.splms-hero__enrollment-card .enrollment-badge svg {
  width: 20px;
  height: 20px;
}
.splms-hero__enrollment-card .enrollment-badge--completed {
  background: #10b981;
}
.splms-hero__enrollment-card .enrollment-badge--enrolled {
  background: #7e75ff;
}
@media (max-width: 768px) {
  .splms-hero__enrollment-card {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .splms-hero {
    padding: clamp(1.5rem, 3vw, 2rem) 0;
  }
  .splms-hero__content {
    gap: 1rem;
  }
  .splms-hero__actions {
    width: 100%;
    flex-direction: column;
  }
  .splms-hero__actions .splms-hero__button, .splms-hero__actions .splms-hero__bookmark-btn, .splms-hero__actions .splms-hero__wishlist-btn, .splms-hero__actions .splms-hero__share-btn {
    width: 100%;
  }
}

/**
 * Course Curriculum Sidebar Component
 * Shared styles for lesson and quiz pages
 * BEM naming with splms- prefix
 */
.splms-course-sidebar {
  background: #ffffff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
  width: 30%;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  overflow: hidden;
}
.splms-course-sidebar:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08), 0 16px 32px rgba(0, 0, 0, 0.12);
}
.splms-course-sidebar__header {
  margin-bottom: 0;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.05) 0%, rgba(126, 117, 255, 0.02) 100%);
  position: relative;
}
.splms-course-sidebar__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #7e75ff 0%, transparent 100%);
  opacity: 0.3;
}
.splms-course-sidebar__title {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0 0;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.splms-course-sidebar__title-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #7e75ff;
  filter: drop-shadow(0 2px 4px rgba(126, 117, 255, 0.25));
}
.splms-course-sidebar__progress {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.04) 0%, rgba(126, 117, 255, 0.02) 100%);
  border-radius: 8px;
  border: 1px solid rgba(126, 117, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.splms-course-sidebar__progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #7e75ff 50%, transparent 100%);
  opacity: 0.4;
}
.splms-course-sidebar__progress-text {
  font-size: 0.8125rem;
  color: #374151;
  font-weight: 700;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.splms-course-sidebar__progress-text .progress-percentage {
  font-size: 1.5rem;
  color: #7e75ff;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.splms-course-sidebar__progress-text .progress-count {
  font-size: 0.75rem;
  color: #475569;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
}
.splms-course-sidebar__progress-bar {
  background: rgba(209, 213, 219, 0.5);
  border-radius: 9999px;
  height: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(156, 163, 175, 0.2);
}
.splms-course-sidebar__progress-fill {
  background: linear-gradient(90deg, #7e75ff 0%, #6b5fff 100%);
  height: 100%;
  transition: width all 0.3s ease ease-in-out;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(126, 117, 255, 0.4);
  position: relative;
}
.splms-course-sidebar__progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  border-radius: 9999px 9999px 0 0;
}
.splms-course-sidebar__progress-fill::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 9999px 9999px 0;
  box-shadow: -1px 0 3px rgba(0, 0, 0, 0.15);
}
.splms-course-sidebar__notice {
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.08) 0%, rgba(255, 105, 0, 0.04) 100%);
  border: 1px solid rgba(255, 105, 0, 0.25);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.splms-course-sidebar__notice p {
  margin: 0;
  color: #1f2937;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
}

.splms-sidebar-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}

.splms-sidebar-section__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #374151;
  margin: 0 0 1.25rem 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(243, 244, 246, 0.6) 0%, rgba(249, 250, 251, 0.3) 100%);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.splms-sidebar-section__title:hover {
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.08) 0%, rgba(126, 117, 255, 0.04) 100%);
  color: #7e75ff;
}
.splms-sidebar-section__title:hover .splms-sidebar-section__title-icon {
  color: #7e75ff;
  transform: scale(1.1);
}
.splms-sidebar-section__title:hover .section-count {
  background: rgba(126, 117, 255, 0.15);
  color: #7e75ff;
}
.splms-sidebar-section__title-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #475569;
  transition: all 0.2s ease;
}
.splms-sidebar-section__title .section-count {
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(209, 213, 219, 0.5);
  color: #374151;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  min-width: 24px;
  text-align: center;
}
.splms-sidebar-section__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.splms-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid transparent;
  background: rgba(249, 250, 251, 0.4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.splms-sidebar-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #7e75ff;
  opacity: 0;
  transition: opacity all 0.2s ease;
}
.splms-sidebar-item::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(126, 117, 255, 0.06), transparent);
  transition: left 0.5s ease;
}
.splms-sidebar-item:hover {
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.06) 0%, rgba(126, 117, 255, 0.03) 100%);
  border-color: rgba(126, 117, 255, 0.25);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(126, 117, 255, 0.12);
  text-decoration: none;
}
.splms-sidebar-item:hover::before {
  left: 100%;
}
.splms-sidebar-item:hover::after {
  opacity: 0.5;
}
.splms-sidebar-item.is-active {
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(126, 117, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateX(6px) scale(1.02);
}
.splms-sidebar-item.is-active::after {
  opacity: 1;
  width: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: 0 8px 8px 0;
  box-shadow: 1px 0 4px rgba(0, 0, 0, 0.1);
}
.splms-sidebar-item.is-active:hover {
  background: linear-gradient(135deg, #6b5fff 0%, #7e75ff 100%);
  border-color: transparent;
  color: #ffffff;
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 6px 20px rgba(126, 117, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.splms-sidebar-item.is-active .splms-sidebar-item__icon {
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transform: scale(1.1);
}
.splms-sidebar-item.is-active .splms-sidebar-item__title {
  color: #ffffff;
  font-weight: 700;
}
.splms-sidebar-item.is-active .splms-sidebar-item__meta {
  color: rgba(255, 255, 255, 0.95);
}
.splms-sidebar-item.is-active .splms-sidebar-item__meta svg {
  color: rgba(255, 255, 255, 0.95);
}
.splms-sidebar-item.is-active .splms-sidebar-status {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
.splms-sidebar-item.is-completed {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-color: rgba(16, 185, 129, 0.25);
  color: #374151;
}
.splms-sidebar-item.is-completed::after {
  background: #10b981;
  opacity: 0.3;
}
.splms-sidebar-item.is-completed:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}
.splms-sidebar-item.is-completed:hover::after {
  opacity: 0.6;
}
.splms-sidebar-item.is-completed .splms-sidebar-item__title {
  color: #1f2937;
  font-weight: 600;
}
.splms-sidebar-item.is-completed .splms-sidebar-item__icon {
  color: #10b981;
  filter: drop-shadow(0 2px 3px rgba(16, 185, 129, 0.25));
}
.splms-sidebar-item.is-completed .splms-sidebar-item__check-icon {
  color: #10b981;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}
.splms-sidebar-item.is-completed .splms-sidebar-item__meta {
  color: #475569;
}
.splms-sidebar-item.is-locked {
  background: linear-gradient(135deg, rgba(243, 244, 246, 0.6) 0%, rgba(249, 250, 251, 0.4) 100%);
  border-color: rgba(209, 213, 219, 0.5);
  color: #6b7280;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.splms-sidebar-item.is-locked::after {
  display: none;
}
.splms-sidebar-item.is-locked:hover {
  background: linear-gradient(135deg, rgba(243, 244, 246, 0.6) 0%, rgba(249, 250, 251, 0.4) 100%);
  border-color: rgba(209, 213, 219, 0.5);
  transform: none;
  box-shadow: none;
}
.splms-sidebar-item.is-locked .splms-sidebar-item__title {
  color: #6b7280;
}
.splms-sidebar-item.is-locked .splms-sidebar-item__icon {
  color: #9ca3af;
  opacity: 0.6;
}
.splms-sidebar-item.is-locked .splms-sidebar-item__lock-icon {
  color: #6b7280;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(209, 213, 219, 0.4);
  border-radius: 50%;
  padding: 3px;
}
.splms-sidebar-item.is-locked .splms-sidebar-item__meta {
  color: #6b7280;
  opacity: 0.7;
}
.splms-sidebar-item__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7e75ff;
  transition: all all 0.2s ease;
  opacity: 0.8;
}
.splms-sidebar-item__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}
.splms-sidebar-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}
.splms-sidebar-item__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: inherit;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.2s ease;
}
.splms-sidebar-item__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: #6b7280;
  font-weight: 600;
}
.splms-sidebar-item__meta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #9ca3af;
  transition: all 0.2s ease;
}
.splms-sidebar-item__status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  margin-left: auto;
  transition: all 0.2s ease;
}
.splms-sidebar-item__check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: all all 0.2s ease;
}
.splms-sidebar-item__lock-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: all all 0.2s ease;
}

.splms-sidebar-status {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.12) 0%, rgba(126, 117, 255, 0.08) 100%);
  color: #7e75ff;
  border: 1px solid rgba(126, 117, 255, 0.25);
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .splms-course-sidebar {
    width: 100%;
  }
  .splms-course-sidebar__header {
    padding: 1.5rem 1.5rem 1.25rem;
  }
  .splms-course-sidebar__title {
    font-size: 1rem;
  }
  .splms-course-sidebar__progress {
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
  }
  .splms-sidebar-sections {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .splms-sidebar-section__title {
    font-size: 0.625rem;
    padding: 0.625rem 0.875rem;
  }
  .splms-sidebar-item {
    padding: 0.75rem 0.875rem;
  }
  .splms-sidebar-item:hover {
    transform: translateX(2px);
  }
  .splms-sidebar-item.is-active {
    transform: translateX(4px) scale(1.01);
  }
  .splms-sidebar-item.is-active:hover {
    transform: translateX(6px) scale(1.01);
  }
  .splms-sidebar-item__title {
    font-size: 0.8125rem;
  }
  .splms-sidebar-item__icon {
    width: 20px;
    height: 20px;
  }
  .splms-sidebar-item__check-icon, .splms-sidebar-item__lock-icon {
    width: 18px;
    height: 18px;
  }
}
/**
 * Learning Content Component (Shared Base)
 * Shared styles for both lesson and quiz content areas
 * Used by: splms-lesson-content and splms-quiz-content
 * BEM naming with splms- prefix
 */
.splms-lesson-content,
.splms-quiz-content {
  border-radius: 12px;
  padding: 1.5rem;
  margin: 0 auto;
  animation: fadeInUp 0.4s ease-out;
  width: 100%;
}
.splms-lesson-content__banner,
.splms-quiz-content__banner {
  margin-bottom: 2rem;
}
.splms-lesson-content__banner:last-child,
.splms-quiz-content__banner:last-child {
  margin-bottom: 0;
}
.splms-lesson-content__notice,
.splms-quiz-content__notice {
  margin-bottom: 2rem;
}
.splms-lesson-content__notice:last-child,
.splms-quiz-content__notice:last-child {
  margin-bottom: 0;
}
.splms-lesson-content__body,
.splms-quiz-content__body {
  margin-top: 0;
  padding-top: 0;
}
.splms-lesson-content__banner + .splms-lesson-content__body, .splms-quiz-content__banner + .splms-lesson-content__body, .splms-lesson-content__notice + .splms-lesson-content__body, .splms-quiz-content__notice + .splms-lesson-content__body,
.splms-lesson-content__banner + .splms-quiz-content__body,
.splms-quiz-content__banner + .splms-quiz-content__body,
.splms-lesson-content__notice + .splms-quiz-content__body,
.splms-quiz-content__notice + .splms-quiz-content__body {
  margin-top: 2rem;
  padding-top: 0;
}
.splms-lesson-content__section,
.splms-quiz-content__section {
  margin-bottom: 2rem;
}
.splms-lesson-content__section:last-child,
.splms-quiz-content__section:last-child {
  margin-bottom: 0;
}
.splms-lesson-content__text,
.splms-quiz-content__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #374151;
  letter-spacing: -0.01em;
  background: #ffffff;
  padding: 0;
}
.splms-lesson-content__text h1, .splms-lesson-content__text h2, .splms-lesson-content__text h3, .splms-lesson-content__text h4, .splms-lesson-content__text h5, .splms-lesson-content__text h6,
.splms-quiz-content__text h1,
.splms-quiz-content__text h2,
.splms-quiz-content__text h3,
.splms-quiz-content__text h4,
.splms-quiz-content__text h5,
.splms-quiz-content__text h6 {
  color: #111827;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.splms-lesson-content__text h1,
.splms-quiz-content__text h1 {
  font-size: 2rem;
}
.splms-lesson-content__text h2,
.splms-quiz-content__text h2 {
  font-size: 1.75rem;
}
.splms-lesson-content__text h3,
.splms-quiz-content__text h3 {
  font-size: 1.5rem;
}
.splms-lesson-content__text h4,
.splms-quiz-content__text h4 {
  font-size: 1.25rem;
}
.splms-lesson-content__text h5,
.splms-quiz-content__text h5 {
  font-size: 1.125rem;
}
.splms-lesson-content__text h6,
.splms-quiz-content__text h6 {
  font-size: 1rem;
}
.splms-lesson-content__text p,
.splms-quiz-content__text p {
  margin-bottom: 1rem;
}
.splms-lesson-content__text p:last-child,
.splms-quiz-content__text p:last-child {
  margin-bottom: 0;
}
.splms-lesson-content__text ul, .splms-lesson-content__text ol,
.splms-quiz-content__text ul,
.splms-quiz-content__text ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.splms-lesson-content__text ul li, .splms-lesson-content__text ol li,
.splms-quiz-content__text ul li,
.splms-quiz-content__text ol li {
  margin-bottom: 0.5rem;
}
.splms-lesson-content__text a,
.splms-quiz-content__text a {
  color: #7e75ff;
  text-decoration: underline;
}
.splms-lesson-content__text a:hover,
.splms-quiz-content__text a:hover {
  color: #6b5fff;
}
.splms-lesson-content__text img,
.splms-quiz-content__text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.splms-lesson-content__text blockquote,
.splms-quiz-content__text blockquote {
  border-left: 4px solid #7e75ff;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #475569;
  font-style: italic;
}
.splms-lesson-content__text code,
.splms-quiz-content__text code {
  background: #f3f4f6;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.875em;
}
.splms-lesson-content__text pre,
.splms-quiz-content__text pre {
  background: #111827;
  color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.splms-lesson-content__text pre code,
.splms-quiz-content__text pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

.splms-enrollment-notice,
.splms-access-restricted {
  background: #fef3c7;
  border: 1px solid rgb(251.3946188341, 192.5067264574, 124.6053811659);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.splms-enrollment-notice h3,
.splms-access-restricted h3 {
  color: rgb(68.1165919283, 37.3542600897, 1.8834080717);
  margin-bottom: 10px;
}
.splms-enrollment-notice p,
.splms-access-restricted p {
  color: rgb(68.1165919283, 37.3542600897, 1.8834080717);
  margin: 0;
}

.splms-preview-banner,
.splms-guest-preview-banner {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.1) 0%, rgba(107, 95, 255, 0.1) 100%);
  border: 1px solid rgba(126, 117, 255, 0.3);
  border-radius: 8px;
  margin-bottom: 2rem;
}
.splms-preview-banner__icon,
.splms-guest-preview-banner__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #7e75ff;
}
.splms-preview-banner__icon svg,
.splms-guest-preview-banner__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}
.splms-preview-banner__content,
.splms-guest-preview-banner__content {
  flex: 1;
}
.splms-preview-banner__content h3,
.splms-guest-preview-banner__content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.splms-preview-banner__content p,
.splms-guest-preview-banner__content p {
  margin: 0 0 1rem 0;
  color: #374151;
  font-size: 0.9375rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .splms-lesson-content,
  .splms-quiz-content {
    padding: 1.5rem;
    border-radius: 8px;
  }
}
/**
 * Lesson Content Component
 * Lesson-specific styles extending the base learning-content component
 * Base styles are in _learning-content.scss
 * BEM naming with splms- prefix
 */
.splms-lesson-video {
  margin-bottom: 2.5rem;
}
.splms-lesson-video__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  background: #111827;
}
.splms-lesson-video__wrapper iframe,
.splms-lesson-video__wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.splms-lesson-video__wrapper video {
  object-fit: contain;
}
.splms-lesson-video__cors-notice {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 105, 0, 0.1);
  border-left: 3px solid rgba(255, 105, 0, 0.5);
  border-radius: 4px;
}
.splms-lesson-video__cors-text {
  margin: 0;
  font-size: 0.8125rem;
  color: #374151;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.splms-lesson-video__cors-text svg {
  flex-shrink: 0;
  color: #ff6900;
}

.splms-lesson-audio {
  margin-bottom: 2rem;
}
.splms-lesson-audio__wrapper {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.splms-lesson-audio__wrapper audio {
  width: 100%;
  outline: none;
  display: block;
}
.splms-lesson-audio__wrapper iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
}
.splms-lesson-audio__cors-notice {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 105, 0, 0.1);
  border-left: 3px solid rgba(255, 105, 0, 0.5);
  border-radius: 4px;
}
.splms-lesson-audio__cors-text {
  margin: 0;
  font-size: 0.8125rem;
  color: #374151;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.splms-lesson-audio__cors-text svg {
  flex-shrink: 0;
  color: #ff6900;
}

.splms-lesson-document {
  margin-bottom: 2rem;
}
.splms-lesson-document__wrapper {
  width: 100%;
}
.splms-lesson-document__image-wrapper {
  margin-bottom: 1.5rem;
  text-align: center;
}
.splms-lesson-document__image-wrapper .splms-lesson-document__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.splms-lesson-document__pdf-wrapper {
  margin-bottom: 1.5rem;
}
.splms-lesson-document__google-wrapper {
  margin-bottom: 1.5rem;
}
.splms-lesson-document__iframe {
  width: 100%;
  min-height: 600px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}
.splms-lesson-document__download-wrapper {
  margin-bottom: 1.5rem;
  padding: 3rem 2rem;
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  text-align: center;
}
.splms-lesson-document__download-wrapper .splms-lesson-document__preview-placeholder p {
  margin: 1rem 0 0 0;
  color: #475569;
  font-size: 0.9375rem;
}
.splms-lesson-document__placeholder-icon {
  opacity: 0.3;
  margin-bottom: 1rem;
  color: #9ca3af;
}
.splms-lesson-document__download {
  margin-top: 1.5rem;
  text-align: center;
}

.splms-doc-image .splms-lesson-document__image {
  display: block;
  margin: 0 auto;
}

.splms-doc-download .splms-lesson-document__preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.splms-doc-download .splms-lesson-document__preview-placeholder .splms-lesson-document__placeholder-icon {
  opacity: 0.3;
  margin-bottom: 1rem;
  color: #9ca3af;
}

.splms-lesson-attachments {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(229, 231, 235, 0.6);
}
.splms-lesson-attachments__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}
.splms-lesson-attachments__toggle:hover {
  opacity: 0.8;
}
.splms-lesson-attachments__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.splms-lesson-attachments__title .splms-icon {
  width: 18px;
  height: 18px;
  color: #7e75ff;
  flex-shrink: 0;
}
.splms-lesson-attachments__count {
  font-weight: 400;
  color: #6b7280;
  font-size: 0.9375rem;
}
.splms-lesson-attachments__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.3s ease;
  stroke: currentColor;
  fill: none;
}
.splms-lesson-attachments__toggle[aria-expanded=true] .splms-lesson-attachments__chevron {
  transform: rotate(90deg);
}
.splms-lesson-attachments__toggle[aria-expanded=true] + .splms-lesson-attachments__content {
  max-height: 2000px;
  padding-top: 1.5rem;
  opacity: 1;
}
.splms-lesson-attachments__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  padding: 0;
  opacity: 0;
}
.splms-lesson-attachments__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.splms-lesson-attachments__item {
  margin: 0;
}
.splms-lesson-attachments__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  transition: all 0.2s ease;
}
.splms-lesson-attachments__link:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transform: translateY(-1px);
}
.splms-lesson-attachments__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  color: #475569;
}
.splms-lesson-attachments__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}
.splms-lesson-attachments__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.splms-lesson-attachments__title-text {
  font-weight: 500;
  color: #111827;
  font-size: 0.9375rem;
}
.splms-lesson-attachments__type {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.splms-lesson-attachments__action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #7e75ff;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}
.splms-lesson-attachments__action svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.splms-lesson-actions {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(229, 231, 235, 0.6);
}
.splms-lesson-actions__notice {
  text-align: center;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 8px;
  color: #374151;
}
.splms-lesson-actions__notice p {
  margin: 0 0 1rem 0;
}

.splms-lesson-completion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
}
.splms-lesson-completion__time-based {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.splms-lesson-completion__auto {
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  color: #374151;
}
.splms-lesson-completion__auto p {
  margin: 0 0 0.75rem 0;
}
.splms-lesson-completion__notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 105, 0, 0.1);
  border: 1px solid rgba(255, 105, 0, 0.3);
  border-radius: 8px;
  color: #92400e;
  font-size: 0.875rem;
}
.splms-lesson-completion__notice svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.splms-lesson-completion__completed {
  width: 100%;
  display: flex;
  justify-content: center;
}

.splms-time-progress {
  width: 100%;
}
.splms-time-progress__bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.splms-time-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #7e75ff 0%, #6b5fff 100%);
  border-radius: 9999px;
  transition: width 0.3s ease;
}
.splms-time-progress__text {
  text-align: center;
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}
.splms-time-progress__current {
  color: #7e75ff;
  font-weight: 600;
}
.splms-time-progress__required {
  color: #374151;
}

.splms-notice {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid;
}
.splms-notice--warning {
  background: rgba(255, 105, 0, 0.1);
  border-color: rgba(255, 105, 0, 0.3);
  color: #92400e;
}
.splms-notice--error {
  background: rgba(231, 76, 60, 0.1);
  border-left: 4px solid #e74c3c;
  border-color: rgba(231, 76, 60, 0.3);
  color: rgb(213.698630137, 43.8356164384, 26.301369863);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
}
.splms-notice--error .splms-notice__icon {
  color: #e74c3c;
  flex-shrink: 0;
}
.splms-notice--error .splms-notice__content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.splms-notice--info {
  background: rgba(126, 117, 255, 0.1);
  border-color: rgba(126, 117, 255, 0.3);
  color: #374151;
}
.splms-notice__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: inherit;
}
.splms-notice__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}
.splms-notice__content {
  flex: 1;
}
.splms-notice__content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: inherit;
}
.splms-notice__content p {
  margin: 0 0 1rem 0;
  color: inherit;
}
.splms-notice__content a {
  color: inherit;
  text-decoration: underline;
}
.splms-notice__content a:hover {
  opacity: 0.8;
}

.splms-prerequisites {
  margin-top: 1.5rem;
}
.splms-prerequisites h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.75rem 0;
}
.splms-prerequisites__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.splms-prerequisites__item {
  margin: 0;
}
.splms-prerequisites__item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  transition: all 0.2s ease;
}
.splms-prerequisites__item a:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  text-decoration: none;
}
.splms-prerequisites__item a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.splms-prerequisites__item.is-completed a {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #10b981;
}
.splms-prerequisites__item.is-completed a .splms-icon-check {
  color: #10b981;
}
.splms-prerequisites__item:not(.is-completed) a .splms-icon-clock {
  color: #ff6900;
}

.splms-preview-banner {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.1) 0%, rgba(107, 95, 255, 0.1) 100%);
  border: 1px solid rgba(126, 117, 255, 0.3);
  border-radius: 8px;
  margin-bottom: 2rem;
}
.splms-preview-banner__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #7e75ff;
}
.splms-preview-banner__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}
.splms-preview-banner__content {
  flex: 1;
}
.splms-preview-banner__content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.splms-preview-banner__content p {
  margin: 0 0 1rem 0;
  color: #374151;
  font-size: 0.9375rem;
}

.splms-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.splms-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.splms-button:active {
  transform: translateY(0);
}
.splms-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.splms-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.splms-button--primary {
  background: #7e75ff;
  color: #ffffff;
}
.splms-button--primary:hover:not(:disabled) {
  background: #6b5fff;
  color: #ffffff;
}
.splms-button--success {
  background: #10b981;
  color: #ffffff;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.splms-button--success:hover {
  background: rgb(13.9701492537, 161.5298507463, 112.6343283582);
  color: #ffffff;
}
.splms-button--complete {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.splms-lesson-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.splms-lesson-navigation__container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.splms-lesson-navigation__button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  transition: all 0.2s ease;
  flex: 1;
  max-width: calc(50% - 0.5rem);
  box-shadow: none;
  font-weight: 500;
  font-size: 0.9375rem;
}
.splms-lesson-navigation__button:hover {
  background: #ffffff;
  border-color: #7e75ff;
  color: #7e75ff;
  box-shadow: 0 0 0 3px rgba(126, 117, 255, 0.1);
  text-decoration: none;
  transform: translateY(-1px);
}
.splms-lesson-navigation__button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: #f9fafb;
  border-color: #e5e7eb;
  color: #9ca3af;
}
.splms-lesson-navigation__button--prev {
  flex-direction: row;
}
.splms-lesson-navigation__button--next {
  flex-direction: row-reverse;
}
.splms-lesson-navigation__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #7e75ff;
  stroke: currentColor;
  fill: none;
}
.splms-lesson-navigation__content {
  flex: 1;
  min-width: 0;
}
.splms-lesson-navigation__type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.splms-lesson-navigation__type svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}
.splms-lesson-navigation__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.splms-lesson-navigation__locked {
  color: #6b7280;
  font-weight: 400;
  font-size: 0.875rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .splms-lesson-navigation__container {
    flex-direction: column;
  }
  .splms-lesson-navigation__button {
    max-width: 100%;
  }
  .splms-button--complete {
    width: 100%;
  }
}
/**
 * Course Share Component
 *
 * Styles for course completion sharing functionality.
 */
.splms-course-share {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}
.splms-course-share__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
}
.splms-course-share__description {
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
  color: #666;
}
.splms-course-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.splms-course-share__message {
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: #d4edda;
  color: #155724;
  border-radius: 4px;
  font-size: 0.875rem;
  text-align: center;
}

.splms-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  background: #fff;
  color: #495057;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.splms-share-btn:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.splms-share-btn:active {
  transform: translateY(0);
}
.splms-share-btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.splms-share-btn span {
  white-space: nowrap;
}
.splms-share-btn--facebook {
  color: #1877f2;
  border-color: #1877f2;
}
.splms-share-btn--facebook:hover {
  background: #1877f2;
  color: #fff;
}
.splms-share-btn--twitter {
  color: #1da1f2;
  border-color: #1da1f2;
}
.splms-share-btn--twitter:hover {
  background: #1da1f2;
  color: #fff;
}
.splms-share-btn--linkedin {
  color: #0077b5;
  border-color: #0077b5;
}
.splms-share-btn--linkedin:hover {
  background: #0077b5;
  color: #fff;
}
.splms-share-btn--whatsapp {
  color: #25d366;
  border-color: #25d366;
}
.splms-share-btn--whatsapp:hover {
  background: #25d366;
  color: #fff;
}
.splms-share-btn--copy {
  color: #6c757d;
  border-color: #6c757d;
}
.splms-share-btn--copy:hover {
  background: #6c757d;
  color: #fff;
}

@media (max-width: 768px) {
  .splms-course-share {
    padding: 1rem;
  }
  .splms-course-share__buttons {
    flex-direction: column;
  }
  .splms-course-share .splms-share-btn {
    width: 100%;
    justify-content: center;
  }
}
.splms-pricing-comparison {
  max-width: 1280px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
@media (max-width: 1024px) {
  .splms-pricing-comparison {
    padding: 0 1rem;
    margin: 2rem auto;
  }
}
.splms-pricing-comparison .pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.splms-pricing-comparison .pricing-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .splms-pricing-comparison .pricing-header h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 640px) {
  .splms-pricing-comparison .pricing-header h2 {
    font-size: 1.5rem;
  }
}
.splms-pricing-comparison .pricing-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .splms-pricing-comparison .pricing-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .splms-pricing-comparison .pricing-columns .pricing-full-course {
    order: 1;
  }
  .splms-pricing-comparison .pricing-columns .pricing-sections {
    order: 2;
  }
}
.splms-pricing-comparison .pricing-column {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .splms-pricing-comparison .pricing-column {
    padding: 1.5rem;
    border-radius: 8px;
  }
}
.splms-pricing-comparison .pricing-column.pricing-full-course {
  border: 3px solid #7e75ff;
  position: relative;
  box-shadow: 0 4px 16px rgba(126, 117, 255, 0.15);
}
.splms-pricing-comparison .pricing-column.pricing-full-course:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 117, 255, 0.2);
}
.splms-pricing-comparison .column-header {
  margin-bottom: 1.5rem;
}
.splms-pricing-comparison .column-header.featured {
  position: relative;
}
.splms-pricing-comparison .column-header .featured-badge {
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.splms-pricing-comparison .column-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .splms-pricing-comparison .column-header h3 {
    font-size: 1.25rem;
  }
}
.splms-pricing-comparison .column-header .column-subtitle {
  color: #475569;
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
}
.splms-pricing-comparison .sections-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.splms-pricing-comparison .section-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: #ffffff;
}
.splms-pricing-comparison .section-item:hover {
  border-color: #7e75ff;
  box-shadow: 0 2px 6px rgba(126, 117, 255, 0.1);
  transform: translateX(2px);
}
.splms-pricing-comparison .section-item.purchased {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
  border-color: #10b981;
}
.splms-pricing-comparison .section-item.purchased:hover {
  border-color: #10b981;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.15);
}
.splms-pricing-comparison .section-item .section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.splms-pricing-comparison .section-item .section-content {
  flex: 1;
  min-width: 0;
}
.splms-pricing-comparison .section-item .section-content .section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}
.splms-pricing-comparison .section-item .section-content .section-meta {
  font-size: 0.875rem;
  color: #475569;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.splms-pricing-comparison .section-item .section-content .section-meta span {
  display: inline-flex;
  align-items: center;
}
.splms-pricing-comparison .section-item .section-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
.splms-pricing-comparison .section-item .section-price .price-current,
.splms-pricing-comparison .section-item .section-price .price-free {
  font-size: 1.25rem;
  font-weight: 700;
  color: #7e75ff;
  line-height: 1;
}
.splms-pricing-comparison .section-item .section-price .price-free {
  color: #10b981;
}
.splms-pricing-comparison .section-item .section-price .purchased-badge {
  background: linear-gradient(135deg, #10b981 0%, rgb(13.9701492537, 161.5298507463, 112.6343283582) 100%);
  color: #ffffff;
  padding: 0.375rem 0.875rem;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.splms-pricing-comparison .section-item .section-price .btn-section {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.splms-pricing-comparison .section-item .section-price .btn-section:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(126, 117, 255, 0.3);
}
.splms-pricing-comparison .section-item .section-price .btn-section:active {
  transform: translateY(0);
}
.splms-pricing-comparison .sections-summary {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e5e7eb;
}
.splms-pricing-comparison .sections-summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.9375rem;
}
.splms-pricing-comparison .sections-summary .summary-row.total-row {
  font-size: 1.125rem;
  padding: 0.75rem 0;
  border-top: 1px solid #d1d5db;
  margin-top: 0.5rem;
  color: #111827;
}
.splms-pricing-comparison .sections-summary .summary-note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.1) 0%, rgba(255, 105, 0, 0.05) 100%);
  border-left: 3px solid #ff6900;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}
.splms-pricing-comparison .features-list {
  margin-bottom: 1.5rem;
}
.splms-pricing-comparison .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #374151;
}
.splms-pricing-comparison .features-list .feature-item .check-icon {
  color: #10b981;
  flex-shrink: 0;
}
.splms-pricing-comparison .features-list .feature-item span {
  font-size: 0.9375rem;
  line-height: 1.5;
}
.splms-pricing-comparison .pricing-box {
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.05) 0%, rgba(126, 117, 255, 0.02) 100%);
  border: 2px solid rgba(126, 117, 255, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.splms-pricing-comparison .pricing-box .pricing-comparison-grid {
  margin-bottom: 1rem;
}
.splms-pricing-comparison .pricing-box .pricing-comparison-grid .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.9375rem;
}
.splms-pricing-comparison .pricing-box .pricing-comparison-grid .price-row .price-label {
  flex: 1;
}
.splms-pricing-comparison .pricing-box .pricing-comparison-grid .price-row .price-value {
  font-weight: 600;
  color: #111827;
}
.splms-pricing-comparison .pricing-box .pricing-comparison-grid .price-row .price-value.strikethrough {
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 400;
}
.splms-pricing-comparison .pricing-box .discount-badge {
  background: linear-gradient(135deg, #e74c3c 0%, rgb(228.2054794521, 55.1575342466, 37.2945205479) 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.splms-pricing-comparison .pricing-box .final-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 2px solid rgba(126, 117, 255, 0.3);
}
.splms-pricing-comparison .pricing-box .final-price .price-label {
  font-weight: 600;
  font-size: 1rem;
  color: #374151;
}
.splms-pricing-comparison .pricing-box .final-price .price-big {
  font-size: 2rem;
  font-weight: 700;
  color: #7e75ff;
  line-height: 1;
}
@media (max-width: 640px) {
  .splms-pricing-comparison .pricing-box .final-price .price-big {
    font-size: 1.75rem;
  }
}
.splms-pricing-comparison .pricing-box .savings-badge {
  background: linear-gradient(135deg, #10b981 0%, rgb(11.9402985075, 138.0597014925, 96.2686567164) 100%);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}
.splms-pricing-comparison .btn-enroll {
  display: block;
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  line-height: 1.4;
}
.splms-pricing-comparison .btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 117, 255, 0.4);
}
.splms-pricing-comparison .btn-enroll:active {
  transform: translateY(0);
}
.splms-pricing-comparison .btn-enroll.upgrade .upgrade-credit {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 0.25rem;
}
.splms-pricing-comparison .btn-enroll.enrolled {
  background: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}
.splms-pricing-comparison .btn-enroll.enrolled:hover {
  transform: none;
  box-shadow: none;
}
.splms-pricing-comparison .social-proof {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.splms-pricing-comparison .social-proof .rating {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.splms-pricing-comparison .social-proof .students-count {
  color: #475569;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.splms-pricing-comparison .social-proof .popular-choice {
  color: #7e75ff;
  font-size: 0.875rem;
  font-weight: 600;
}

@keyframes slideInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.splms-pricing-comparison {
  animation: slideInUp 0.5s ease-out;
}

.btn-enroll:focus-visible,
.btn-section:focus-visible {
  outline: 3px solid #7e75ff;
  outline-offset: 2px;
}

@media print {
  .splms-pricing-comparison .social-proof {
    display: none !important;
  }
  .splms-pricing-comparison .btn-enroll,
  .splms-pricing-comparison .btn-section {
    display: none !important;
  }
}
/**
 * Dashboard Styles
 * All styles scoped under .splms-dashboard-wrapper to prevent conflicts
 * Can be overridden in theme: skillpulse-lms/dashboard/dashboard.scss
 */
/**
 * Dashboard Certificates Styles
 * Modern card-based layout for certificate items
 */
.splms-dashboard-wrapper .splms-certificate-item,
.splms-dashboard-tab .splms-certificate-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s ease;
}
.splms-dashboard-wrapper .splms-certificate-item:hover,
.splms-dashboard-tab .splms-certificate-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-certificate-icon,
.splms-dashboard-tab .splms-certificate-item .splms-certificate-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f3f2ff;
  border-radius: 8px;
  color: #7e75ff;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-certificate-icon svg,
.splms-dashboard-tab .splms-certificate-item .splms-certificate-icon svg {
  width: 40px;
  height: 40px;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-certificate-content,
.splms-dashboard-tab .splms-certificate-item .splms-certificate-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-certificate-title,
.splms-dashboard-tab .splms-certificate-item .splms-certificate-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-certificate-meta,
.splms-dashboard-tab .splms-certificate-item .splms-certificate-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-certificate-meta-item,
.splms-dashboard-tab .splms-certificate-item .splms-certificate-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-certificate-meta-label,
.splms-dashboard-tab .splms-certificate-item .splms-certificate-meta-label {
  font-weight: 500;
  color: #6b7280;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-certificate-meta-value,
.splms-dashboard-tab .splms-certificate-item .splms-certificate-meta-value {
  color: #374151;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-certificate-actions,
.splms-dashboard-tab .splms-certificate-item .splms-certificate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn,
.splms-dashboard-tab .splms-certificate-item .splms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn svg,
.splms-dashboard-tab .splms-certificate-item .splms-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn-sm,
.splms-dashboard-tab .splms-certificate-item .splms-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn-primary,
.splms-dashboard-tab .splms-certificate-item .splms-btn-primary {
  background: #7e75ff;
  color: #ffffff;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn-primary:hover,
.splms-dashboard-tab .splms-certificate-item .splms-btn-primary:hover {
  background: #6b5fff;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn-primary:disabled,
.splms-dashboard-tab .splms-certificate-item .splms-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn-secondary,
.splms-dashboard-tab .splms-certificate-item .splms-btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn-secondary:hover,
.splms-dashboard-tab .splms-certificate-item .splms-btn-secondary:hover {
  background: #e5e7eb;
  color: #1f2937;
  border-color: #9ca3af;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn-secondary:disabled,
.splms-dashboard-tab .splms-certificate-item .splms-btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn-outline,
.splms-dashboard-tab .splms-certificate-item .splms-btn-outline {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn-outline:hover,
.splms-dashboard-tab .splms-certificate-item .splms-btn-outline:hover {
  background: #f9fafb;
  color: #1f2937;
  border-color: #9ca3af;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn-outline:disabled,
.splms-dashboard-tab .splms-certificate-item .splms-btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn.loading,
.splms-dashboard-tab .splms-certificate-item .splms-btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.splms-dashboard-wrapper .splms-certificate-item .splms-btn.loading::after,
.splms-dashboard-tab .splms-certificate-item .splms-btn.loading::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  margin: -7px 0 0 -7px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: splms-spin 0.8s linear infinite;
}
@media (max-width: 768px) {
  .splms-dashboard-wrapper .splms-certificate-item,
  .splms-dashboard-tab .splms-certificate-item {
    padding: 16px;
    gap: 10px;
  }
  .splms-dashboard-wrapper .splms-certificate-item .splms-certificate-icon,
  .splms-dashboard-tab .splms-certificate-item .splms-certificate-icon {
    width: 40px;
    height: 40px;
  }
  .splms-dashboard-wrapper .splms-certificate-item .splms-certificate-icon svg,
  .splms-dashboard-tab .splms-certificate-item .splms-certificate-icon svg {
    width: 32px;
    height: 32px;
  }
  .splms-dashboard-wrapper .splms-certificate-item .splms-certificate-title,
  .splms-dashboard-tab .splms-certificate-item .splms-certificate-title {
    font-size: 1rem;
  }
  .splms-dashboard-wrapper .splms-certificate-item .splms-certificate-actions,
  .splms-dashboard-tab .splms-certificate-item .splms-certificate-actions {
    flex-direction: column;
    width: 100%;
  }
  .splms-dashboard-wrapper .splms-certificate-item .splms-certificate-actions .splms-btn,
  .splms-dashboard-tab .splms-certificate-item .splms-certificate-actions .splms-btn {
    width: 100%;
    justify-content: center;
  }
}
.splms-dashboard-wrapper .splms-dashboard-empty-state,
.splms-dashboard-tab .splms-dashboard-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #6b7280;
}
.splms-dashboard-wrapper .splms-dashboard-empty-state svg,
.splms-dashboard-tab .splms-dashboard-empty-state svg {
  width: 64px;
  height: 64px;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.splms-dashboard-wrapper .splms-dashboard-empty-state h3,
.splms-dashboard-tab .splms-dashboard-empty-state h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
}
.splms-dashboard-wrapper .splms-dashboard-empty-state p,
.splms-dashboard-tab .splms-dashboard-empty-state p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

#splms-dashboard-certificates-content .splms-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #7e75ff;
  border-radius: 50%;
  animation: splms-spin 0.8s linear infinite;
  margin: 2rem auto;
}

/**
 * Dashboard Orders Styles
 * Modern table layout with pagination and order details
 */
.splms-dashboard-wrapper .splms-orders-table-wrapper,
.splms-dashboard-tab .splms-orders-table-wrapper {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.splms-dashboard-wrapper .splms-orders-table,
.splms-dashboard-tab .splms-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.splms-dashboard-wrapper .splms-orders-table thead,
.splms-dashboard-tab .splms-orders-table thead {
  background: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
}
.splms-dashboard-wrapper .splms-orders-table thead th,
.splms-dashboard-tab .splms-orders-table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #374151;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.splms-dashboard-wrapper .splms-orders-table tbody tr,
.splms-dashboard-tab .splms-orders-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}
.splms-dashboard-wrapper .splms-orders-table tbody tr:hover,
.splms-dashboard-tab .splms-orders-table tbody tr:hover {
  background: #f9fafb;
}
.splms-dashboard-wrapper .splms-orders-table tbody tr:last-child,
.splms-dashboard-tab .splms-orders-table tbody tr:last-child {
  border-bottom: none;
}
.splms-dashboard-wrapper .splms-orders-table tbody td,
.splms-dashboard-tab .splms-orders-table tbody td {
  padding: 1rem;
  color: #374151;
  vertical-align: middle;
}
.splms-dashboard-wrapper .splms-orders-table tbody td a,
.splms-dashboard-tab .splms-orders-table tbody td a {
  color: #7e75ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.splms-dashboard-wrapper .splms-orders-table tbody td a:hover,
.splms-dashboard-tab .splms-orders-table tbody td a:hover {
  color: #6b5fff;
  text-decoration: underline;
}
.splms-dashboard-wrapper .splms-orders-table .splms-order-id,
.splms-dashboard-tab .splms-orders-table .splms-order-id {
  font-family: monospace;
  font-weight: 600;
  color: #111827;
}
.splms-dashboard-wrapper .splms-orders-table .splms-order-course,
.splms-dashboard-tab .splms-orders-table .splms-order-course {
  max-width: 300px;
}
.splms-dashboard-wrapper .splms-orders-table .splms-order-course a,
.splms-dashboard-tab .splms-orders-table .splms-order-course a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.splms-dashboard-wrapper .splms-orders-table .splms-order-amount,
.splms-dashboard-tab .splms-orders-table .splms-order-amount {
  font-weight: 600;
  color: #111827;
}
.splms-dashboard-wrapper .splms-orders-table .splms-order-date,
.splms-dashboard-tab .splms-orders-table .splms-order-date {
  color: #6b7280;
  white-space: nowrap;
}
.splms-dashboard-wrapper .splms-orders-table .splms-order-actions,
.splms-dashboard-tab .splms-orders-table .splms-order-actions {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .splms-dashboard-wrapper .splms-orders-table thead,
  .splms-dashboard-tab .splms-orders-table thead {
    display: none;
  }
  .splms-dashboard-wrapper .splms-orders-table tbody tr,
  .splms-dashboard-tab .splms-orders-table tbody tr {
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #ffffff;
  }
  .splms-dashboard-wrapper .splms-orders-table tbody td,
  .splms-dashboard-tab .splms-orders-table tbody td {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
  }
  .splms-dashboard-wrapper .splms-orders-table tbody td:before,
  .splms-dashboard-tab .splms-orders-table tbody td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #374151;
    display: inline-block;
    width: 120px;
    margin-right: 0.5rem;
  }
  .splms-dashboard-wrapper .splms-orders-table tbody td:last-child,
  .splms-dashboard-tab .splms-orders-table tbody td:last-child {
    border-bottom: none;
  }
}
.splms-dashboard-wrapper .splms-status-badge,
.splms-dashboard-tab .splms-status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.4;
}
.splms-dashboard-wrapper .splms-status-badge-completed,
.splms-dashboard-tab .splms-status-badge-completed {
  background: #dcfce7;
  color: #16a34a;
}
.splms-dashboard-wrapper .splms-status-badge-pending,
.splms-dashboard-tab .splms-status-badge-pending {
  background: #fef3c7;
  color: #d97706;
}
.splms-dashboard-wrapper .splms-status-badge-failed,
.splms-dashboard-tab .splms-status-badge-failed {
  background: #fee2e2;
  color: #dc2626;
}
.splms-dashboard-wrapper .splms-status-badge-refunded,
.splms-dashboard-tab .splms-status-badge-refunded {
  background: #f3f4f6;
  color: #374151;
}
.splms-dashboard-wrapper .splms-status-badge-cancelled,
.splms-dashboard-tab .splms-status-badge-cancelled {
  background: #fee2e2;
  color: #dc2626;
}
.splms-dashboard-wrapper .splms-pagination,
.splms-dashboard-tab .splms-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  flex-direction: row;
}
.splms-dashboard-wrapper .splms-pagination .splms-page-btn,
.splms-dashboard-tab .splms-pagination .splms-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.splms-dashboard-wrapper .splms-pagination .splms-page-btn:hover:not(:disabled),
.splms-dashboard-tab .splms-pagination .splms-page-btn:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
.splms-dashboard-wrapper .splms-pagination .splms-page-btn:disabled,
.splms-dashboard-tab .splms-pagination .splms-page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.splms-dashboard-wrapper .splms-pagination .splms-page-btn svg,
.splms-dashboard-tab .splms-pagination .splms-page-btn svg {
  width: 16px;
  height: 16px;
}
.splms-dashboard-wrapper .splms-pagination .splms-page-numbers,
.splms-dashboard-tab .splms-pagination .splms-page-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.splms-dashboard-wrapper .splms-pagination .splms-page-number,
.splms-dashboard-tab .splms-pagination .splms-page-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.splms-dashboard-wrapper .splms-pagination .splms-page-number:hover:not(.splms-page-active),
.splms-dashboard-tab .splms-pagination .splms-page-number:hover:not(.splms-page-active) {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
.splms-dashboard-wrapper .splms-pagination .splms-page-number.splms-page-active,
.splms-dashboard-tab .splms-pagination .splms-page-number.splms-page-active {
  background: #7e75ff;
  border-color: #7e75ff;
  color: #ffffff;
  cursor: default;
}
.splms-dashboard-wrapper .splms-pagination .splms-page-dots,
.splms-dashboard-tab .splms-pagination .splms-page-dots {
  padding: 0 0.25rem;
  color: #9ca3af;
}

.splms-order-detail-view .splms-order-detail-wrapper {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
}
.splms-order-detail-view .splms-order-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.splms-order-detail-view .splms-order-detail-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}
.splms-order-detail-view .splms-order-detail-section {
  margin-bottom: 2rem;
}
.splms-order-detail-view .splms-order-detail-section:last-child {
  margin-bottom: 0;
}
.splms-order-detail-view .splms-order-detail-section h3 {
  margin: 0 0 1.25rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.splms-order-detail-view .splms-order-summary-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.splms-order-detail-view .splms-order-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.splms-order-detail-view .splms-order-summary-item:last-child {
  border-bottom: none;
}
.splms-order-detail-view .splms-order-summary-item label {
  font-weight: 600;
  color: #374151;
  min-width: 140px;
  flex-shrink: 0;
}
.splms-order-detail-view .splms-order-summary-item span {
  color: #374151;
  flex: 1;
}
.splms-order-detail-view .splms-order-summary-item .splms-order-total {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.splms-order-detail-view .splms-billing-details p {
  margin: 0 0 0.75rem 0;
  color: #374151;
  line-height: 1.6;
}
.splms-order-detail-view .splms-billing-details p strong {
  font-weight: 600;
  color: #111827;
  margin-right: 0.5rem;
}
.splms-order-detail-view .splms-billing-details p:last-child {
  margin-bottom: 0;
}
.splms-order-detail-view .splms-order-courses {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.splms-order-detail-view .splms-order-course-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.splms-order-detail-view .splms-order-course-item .splms-order-course-thumbnail {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.splms-order-detail-view .splms-order-course-item .splms-order-course-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splms-order-detail-view .splms-order-course-item .splms-order-course-info {
  flex: 1;
}
.splms-order-detail-view .splms-order-course-item .splms-order-course-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}
.splms-order-detail-view .splms-order-course-item .splms-order-course-info h4 a {
  color: #111827;
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-order-detail-view .splms-order-course-item .splms-order-course-info h4 a:hover {
  color: #7e75ff;
}
.splms-order-detail-view .splms-order-course-item .splms-order-course-action {
  flex-shrink: 0;
}
.splms-order-detail-view .splms-order-invoice-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .splms-order-detail-view .splms-order-detail-wrapper {
    padding: 1.5rem;
  }
  .splms-order-detail-view .splms-order-detail-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .splms-order-detail-view .splms-order-summary-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .splms-order-detail-view .splms-order-summary-item label {
    min-width: auto;
  }
  .splms-order-detail-view .splms-order-course-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .splms-order-detail-view .splms-order-course-item .splms-order-course-action {
    width: 100%;
  }
  .splms-order-detail-view .splms-order-course-item .splms-order-course-action .splms-btn {
    width: 100%;
  }
  .splms-order-detail-view .splms-order-invoice-actions {
    flex-direction: column;
  }
  .splms-order-detail-view .splms-order-invoice-actions .splms-btn {
    width: 100%;
  }
}
/**
 * Dashboard Notifications Styles
 * Styles specific to the notifications tab
 */
.splms-dashboard-wrapper .splms-notifications-filters,
.splms-dashboard-tab .splms-notifications-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E5E7EB;
}
.splms-dashboard-wrapper .splms-notifications-filter-buttons,
.splms-dashboard-tab .splms-notifications-filter-buttons {
  display: flex;
  gap: 0.5rem;
}
.splms-dashboard-wrapper .splms-filter-btn,
.splms-dashboard-tab .splms-filter-btn {
  padding: 0.5rem 1rem;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  color: #6B7280;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.splms-dashboard-wrapper .splms-filter-btn:hover,
.splms-dashboard-tab .splms-filter-btn:hover {
  background: #E5E7EB;
  border-color: #D1D5DB;
}
.splms-dashboard-wrapper .splms-filter-btn.is-active,
.splms-dashboard-tab .splms-filter-btn.is-active {
  background: #fff;
  border-color: #111827;
  color: #111827;
  font-weight: 600;
}
.splms-dashboard-wrapper .splms-notifications-list,
.splms-dashboard-tab .splms-notifications-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0;
}
.splms-dashboard-wrapper .splms-notification-card,
.splms-dashboard-tab .splms-notification-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 5px;
  padding: 1rem;
  transition: all 0.2s;
  justify-content: space-between;
}
.splms-dashboard-wrapper .splms-notification-card:hover,
.splms-dashboard-tab .splms-notification-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-color: #D1D5DB;
}
.splms-dashboard-wrapper .splms-notification-card.is-unread,
.splms-dashboard-tab .splms-notification-card.is-unread {
  border-left: 1px solid #2A7AE4;
}
.splms-dashboard-wrapper .splms-notification-card.is-read,
.splms-dashboard-tab .splms-notification-card.is-read {
  opacity: 0.8;
}
.splms-dashboard-wrapper .splms-notification-link,
.splms-dashboard-tab .splms-notification-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.splms-dashboard-wrapper .splms-notification-link:hover,
.splms-dashboard-tab .splms-notification-link:hover {
  text-decoration: none;
}
.splms-dashboard-wrapper .splms-notification-avatar,
.splms-dashboard-tab .splms-notification-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #F3F4F6;
}
.splms-dashboard-wrapper .splms-notification-avatar img,
.splms-dashboard-tab .splms-notification-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splms-dashboard-wrapper .splms-notification-content,
.splms-dashboard-tab .splms-notification-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.splms-dashboard-wrapper .splms-notification-message,
.splms-dashboard-tab .splms-notification-message {
  margin: 0;
  font-size: 0.9375rem;
  color: #111827;
  line-height: 1.5;
}
.splms-dashboard-wrapper .splms-notification-time,
.splms-dashboard-tab .splms-notification-time {
  font-size: 0.8125rem;
  color: #9CA3AF;
  margin-top: 0.125rem;
}
.splms-dashboard-wrapper .splms-notification-actions,
.splms-dashboard-tab .splms-notification-actions {
  position: relative;
  flex-shrink: 0;
}
.splms-dashboard-wrapper .splms-notification-menu-btn,
.splms-dashboard-tab .splms-notification-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s;
}
.splms-dashboard-wrapper .splms-notification-menu-btn:hover,
.splms-dashboard-tab .splms-notification-menu-btn:hover {
  background: #F3F4F6;
  color: #111827;
}
.splms-dashboard-wrapper .splms-notification-menu-btn svg,
.splms-dashboard-tab .splms-notification-menu-btn svg {
  width: 20px;
  height: 20px;
}
.splms-dashboard-wrapper .splms-notification-menu,
.splms-dashboard-tab .splms-notification-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
}
.splms-dashboard-wrapper .splms-notification-menu.is-open,
.splms-dashboard-tab .splms-notification-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.splms-dashboard-wrapper .splms-menu-item,
.splms-dashboard-tab .splms-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 0.875rem;
  color: #111827;
  cursor: pointer;
  transition: background-color 0.2s;
}
.splms-dashboard-wrapper .splms-menu-item:first-child,
.splms-dashboard-tab .splms-menu-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.splms-dashboard-wrapper .splms-menu-item:last-child,
.splms-dashboard-tab .splms-menu-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.splms-dashboard-wrapper .splms-menu-item:hover,
.splms-dashboard-tab .splms-menu-item:hover {
  background: #F9FAFB;
}
.splms-dashboard-wrapper .splms-menu-item svg,
.splms-dashboard-tab .splms-menu-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #6B7280;
}
.splms-dashboard-wrapper .splms-menu-item[data-action=delete],
.splms-dashboard-tab .splms-menu-item[data-action=delete] {
  color: #DC2626;
}
.splms-dashboard-wrapper .splms-menu-item[data-action=delete]:hover,
.splms-dashboard-tab .splms-menu-item[data-action=delete]:hover {
  background: #FEF2F2;
}
.splms-dashboard-wrapper .splms-menu-item[data-action=delete] svg,
.splms-dashboard-tab .splms-menu-item[data-action=delete] svg {
  color: #DC2626;
}

/**
 * Dashboard Settings Styles
 * Styles specific to the settings tab (tabs, forms, notification preferences)
 */
.splms-dashboard-wrapper .splms-settings-tabs-nav,
.splms-dashboard-tab .splms-settings-tabs-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 0;
}
.splms-dashboard-wrapper .splms-settings-tabs-nav .splms-settings-tab-btn,
.splms-dashboard-tab .splms-settings-tabs-nav .splms-settings-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: #6B7280;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s;
  margin-bottom: -2px;
}
.splms-dashboard-wrapper .splms-settings-tabs-nav .splms-settings-tab-btn svg,
.splms-dashboard-tab .splms-settings-tabs-nav .splms-settings-tab-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.splms-dashboard-wrapper .splms-settings-tabs-nav .splms-settings-tab-btn:hover,
.splms-dashboard-tab .splms-settings-tabs-nav .splms-settings-tab-btn:hover {
  color: #111827;
  background: #F9FAFB;
}
.splms-dashboard-wrapper .splms-settings-tabs-nav .splms-settings-tab-btn.is-active,
.splms-dashboard-tab .splms-settings-tabs-nav .splms-settings-tab-btn.is-active {
  color: #2A7AE4;
  border-bottom-color: #2A7AE4;
  font-weight: 600;
}
@media (max-width: 768px) {
  .splms-dashboard-wrapper .splms-settings-tabs-nav,
  .splms-dashboard-tab .splms-settings-tabs-nav {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .splms-dashboard-wrapper .splms-settings-tabs-nav .splms-settings-tab-btn,
  .splms-dashboard-tab .splms-settings-tabs-nav .splms-settings-tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}
.splms-dashboard-wrapper .splms-settings-tabs-content,
.splms-dashboard-tab .splms-settings-tabs-content {
  position: relative;
}
.splms-dashboard-wrapper .splms-settings-tab-panel,
.splms-dashboard-tab .splms-settings-tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.splms-dashboard-wrapper .splms-settings-tab-panel.is-active,
.splms-dashboard-tab .splms-settings-tab-panel.is-active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.splms-dashboard-wrapper .splms-dashboard-form,
.splms-dashboard-tab .splms-dashboard-form {
  margin-bottom: 2rem;
}
.splms-dashboard-wrapper .splms-dashboard-form h3,
.splms-dashboard-tab .splms-dashboard-form h3 {
  margin: 0 0 1.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}
.splms-dashboard-wrapper .splms-form-group,
.splms-dashboard-tab .splms-form-group {
  margin-bottom: 1.5rem;
}
.splms-dashboard-wrapper .splms-form-group label,
.splms-dashboard-tab .splms-form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
}
.splms-dashboard-wrapper .splms-form-group input,
.splms-dashboard-wrapper .splms-form-group textarea,
.splms-dashboard-tab .splms-form-group input,
.splms-dashboard-tab .splms-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--splms-gray-300, #D1D5DB);
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.splms-dashboard-wrapper .splms-form-group input:focus,
.splms-dashboard-wrapper .splms-form-group textarea:focus,
.splms-dashboard-tab .splms-form-group input:focus,
.splms-dashboard-tab .splms-form-group textarea:focus {
  outline: none;
  border-color: var(--splms-primary, #2A7AE4);
  box-shadow: 0 0 0 3px rgba(42, 122, 228, 0.1);
}
.splms-dashboard-wrapper .splms-form-group textarea,
.splms-dashboard-tab .splms-form-group textarea {
  resize: vertical;
}
.splms-dashboard-wrapper .splms-form-description,
.splms-dashboard-tab .splms-form-description {
  margin: 0 0 1.5rem 0;
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.6;
}
.splms-dashboard-wrapper .splms-form-help,
.splms-dashboard-tab .splms-form-help {
  margin: 0.5rem 0 0 0;
  color: #9CA3AF;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.splms-dashboard-wrapper .splms-checkbox-label,
.splms-dashboard-tab .splms-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #111827;
  margin: 0;
  gap: 0.75rem;
  position: relative;
}
.splms-dashboard-wrapper .splms-checkbox-label input[type=checkbox],
.splms-dashboard-tab .splms-checkbox-label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.splms-dashboard-wrapper .splms-checkbox-label input[type=checkbox]:checked + .splms-checkbox-mark,
.splms-dashboard-tab .splms-checkbox-label input[type=checkbox]:checked + .splms-checkbox-mark {
  background: #6366F1;
  border-color: #6366F1;
}
.splms-dashboard-wrapper .splms-checkbox-label input[type=checkbox]:checked + .splms-checkbox-mark::after,
.splms-dashboard-tab .splms-checkbox-label input[type=checkbox]:checked + .splms-checkbox-mark::after {
  display: block;
}
.splms-dashboard-wrapper .splms-checkbox-label input[type=checkbox]:focus + .splms-checkbox-mark,
.splms-dashboard-tab .splms-checkbox-label input[type=checkbox]:focus + .splms-checkbox-mark {
  outline: 2px solid #6366F1;
  outline-offset: 2px;
}
.splms-dashboard-wrapper .splms-checkbox-label input[type=checkbox].error + .splms-checkbox-mark,
.splms-dashboard-tab .splms-checkbox-label input[type=checkbox].error + .splms-checkbox-mark {
  border-color: #e74c3c;
}
.splms-dashboard-wrapper .splms-checkbox-label span:not(.splms-checkbox-mark),
.splms-dashboard-tab .splms-checkbox-label span:not(.splms-checkbox-mark) {
  user-select: none;
}
.splms-dashboard-wrapper .splms-checkbox-mark,
.splms-dashboard-tab .splms-checkbox-mark {
  position: relative;
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  border: 2px solid #D1D5DB;
  border-radius: 4px;
  background: #fff;
  transition: all 0.2s ease;
  display: block;
  cursor: pointer;
  margin: 0;
  align-self: center;
}
.splms-dashboard-wrapper .splms-checkbox-mark::after,
.splms-dashboard-tab .splms-checkbox-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: none;
}
.splms-dashboard-wrapper .splms-checkbox-mark:hover,
.splms-dashboard-tab .splms-checkbox-mark:hover {
  border-color: #6366F1;
}
.splms-dashboard-wrapper .splms-notification-global-settings,
.splms-dashboard-tab .splms-notification-global-settings {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.splms-dashboard-wrapper .splms-notification-global-settings .splms-form-group,
.splms-dashboard-tab .splms-notification-global-settings .splms-form-group {
  margin-bottom: 1.25rem;
}
.splms-dashboard-wrapper .splms-notification-global-settings .splms-form-group:last-child,
.splms-dashboard-tab .splms-notification-global-settings .splms-form-group:last-child {
  margin-bottom: 0;
}
.splms-dashboard-wrapper .splms-notification-events,
.splms-dashboard-tab .splms-notification-events {
  margin-top: 2rem;
}
.splms-dashboard-wrapper .splms-notification-events h4,
.splms-dashboard-tab .splms-notification-events h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.splms-dashboard-wrapper .splms-notification-events > .splms-form-help,
.splms-dashboard-tab .splms-notification-events > .splms-form-help {
  margin-bottom: 1.5rem;
}
.splms-dashboard-wrapper .splms-notification-event-item,
.splms-dashboard-tab .splms-notification-event-item {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
}
.splms-dashboard-wrapper .splms-notification-event-item:hover,
.splms-dashboard-tab .splms-notification-event-item:hover {
  border-color: #D1D5DB;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.splms-dashboard-wrapper .splms-notification-event-item:last-child,
.splms-dashboard-tab .splms-notification-event-item:last-child {
  margin-bottom: 0;
}
.splms-dashboard-wrapper .splms-notification-event-item .splms-event-header,
.splms-dashboard-tab .splms-notification-event-item .splms-event-header {
  margin-bottom: 1rem;
}
.splms-dashboard-wrapper .splms-notification-event-item .splms-event-header strong,
.splms-dashboard-tab .splms-notification-event-item .splms-event-header strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}
.splms-dashboard-wrapper .splms-notification-event-item .splms-event-description,
.splms-dashboard-tab .splms-notification-event-item .splms-event-description {
  margin: 0.25rem 0 0 0;
  color: #6B7280;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 400;
}
.splms-dashboard-wrapper .splms-notification-event-item .splms-event-options,
.splms-dashboard-tab .splms-notification-event-item .splms-event-options {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.splms-dashboard-wrapper .splms-notification-event-item .splms-event-options .splms-checkbox-label,
.splms-dashboard-tab .splms-notification-event-item .splms-event-options .splms-checkbox-label {
  margin-bottom: 0;
}

@keyframes splms-spin {
  to {
    transform: rotate(360deg);
  }
}
body.page-template-dashboard .entry-title,
body.page-template-dashboard .page-title,
body.page-template-dashboard .post-title,
body.page-template-dashboard .entry-header h1,
body.page-template-page-dashboard .entry-title,
body.page-template-page-dashboard .page-title,
body.page-template-page-dashboard .post-title,
body.page-template-page-dashboard .entry-header h1 {
  display: none !important;
}
body.page-template-dashboard .content-area,
body.page-template-page-dashboard .content-area {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.splms-dashboard-wrapper {
  position: relative;
}
.splms-dashboard-wrapper.is-loading {
  opacity: 0.6;
  pointer-events: none;
}
.splms-dashboard-wrapper .splms-dashboard {
  display: flex;
  flex-direction: column;
  min-height: 80vh;
  background: #F8F9FB;
  border-radius: 12px;
}
.splms-dashboard-wrapper .splms-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid #E5E7EB;
}
.splms-dashboard-wrapper .splms-dashboard-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.splms-dashboard-wrapper .splms-dashboard-header-left h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}
.splms-dashboard-wrapper .splms-dashboard-header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.splms-dashboard-wrapper .splms-dashboard-sidebar-toggle {
  display: block;
  background: transparent;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--splms-gray-500, #6B7280);
  transition: color 0.2s;
}
.splms-dashboard-wrapper .splms-dashboard-sidebar-toggle svg {
  width: 20px;
  height: 20px;
}
.splms-dashboard-wrapper .splms-dashboard-sidebar-toggle:hover {
  color: var(--splms-white, #FFFFFF);
  background: var(--splms-primary, #2A7AE4);
}
@media (min-width: 769px) {
  .splms-dashboard-wrapper .splms-dashboard-sidebar-toggle {
    padding: 0.375rem;
  }
}
.splms-dashboard-wrapper .splms-dashboard-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.splms-dashboard-wrapper .splms-dashboard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.splms-dashboard-wrapper .splms-dashboard-user-details {
  display: flex;
  flex-direction: column;
}
.splms-dashboard-wrapper .splms-dashboard-user-details-name {
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
}
.splms-dashboard-wrapper .splms-dashboard-user-details-role {
  font-size: 0.75rem;
  color: #6B7280;
  text-transform: capitalize;
}
.splms-dashboard-wrapper .splms-dashboard-logout {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  color: #6B7280;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.splms-dashboard-wrapper .splms-dashboard-logout:hover {
  background: #F3F4F6;
  color: #111827;
}
.splms-dashboard-wrapper .splms-dashboard-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
@media (max-width: 768px) {
  .splms-dashboard-wrapper .splms-dashboard-overlay {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  body.sidebar-open .splms-dashboard-wrapper .splms-dashboard-overlay {
    opacity: 1;
    pointer-events: all;
  }
}
.splms-dashboard-wrapper .splms-dashboard-body {
  display: flex;
  flex: 1;
  position: relative;
}
@media (max-width: 768px) {
  .splms-dashboard-wrapper .splms-dashboard-body {
    flex-direction: column;
  }
}
.splms-dashboard-wrapper .splms-dashboard-body .splms-dashboard-sidebar.is-collapsed {
  width: 0;
  border-right: none;
  overflow: hidden;
}
.splms-dashboard-wrapper .splms-dashboard-body .splms-dashboard-sidebar.is-collapsed .splms-dashboard-nav {
  opacity: 0;
  pointer-events: none;
}
.splms-dashboard-wrapper .splms-dashboard-sidebar {
  width: 240px;
  background: #fff;
  border-right: 1px solid #E5E7EB;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  overflow: visible;
}
@media (max-width: 768px) {
  .splms-dashboard-wrapper .splms-dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 70px;
    bottom: 0;
    width: 280px;
    z-index: 999;
    border-right: 1px solid #E5E7EB;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    max-height: calc(100vh - 70px);
  }
  .splms-dashboard-wrapper .splms-dashboard-sidebar.is-open {
    transform: translateX(0);
  }
}
.splms-dashboard-wrapper .splms-dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem;
}
.splms-dashboard-wrapper .splms-dashboard-nav .splms-dashboard-nav-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.splms-dashboard-wrapper .splms-dashboard-nav .splms-tooltip {
  margin-left: 6px;
}
.splms-dashboard-wrapper .splms-dashboard-nav .splms-tooltip .splms-tooltip-content {
  left: 0;
  top: calc(100% + 6px);
  transform: none;
  z-index: 1001;
}
.splms-dashboard-wrapper .splms-dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #6B7280;
  text-align: left;
  transition: all 0.2s;
  text-decoration: none;
}
.splms-dashboard-wrapper .splms-dashboard-nav-item:hover {
  background: #F3F4F6;
  color: #111827;
}
.splms-dashboard-wrapper .splms-dashboard-nav-item.is-active {
  background: #EBF4FF;
  color: #2A7AE4;
  font-weight: 600;
}
.splms-dashboard-wrapper .splms-dashboard-nav-item svg {
  width: 20px;
  height: 20px;
}
.splms-dashboard-wrapper .splms-dashboard-content {
  flex: 1;
  padding: 2rem;
  background: #fff;
  border-radius: 0 0 12px 12px;
  position: relative;
}
@media (max-width: 768px) {
  .splms-dashboard-wrapper .splms-dashboard-content {
    padding: 1.5rem;
    width: 100%;
  }
}
.splms-dashboard-wrapper .splms-dashboard-tab-header {
  margin-bottom: 2rem;
}
.splms-dashboard-wrapper .splms-dashboard-tab-header h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}
.splms-dashboard-wrapper .splms-dashboard-tab-header p {
  margin: 0;
  color: #6B7280;
  font-size: 0.875rem;
}
.splms-dashboard-wrapper .splms-dashboard-tab-header .splms-btn {
  margin-top: 1rem;
}
.splms-dashboard-wrapper .splms-dashboard .splms-enrollment-subtabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #E5E7EB;
  padding-bottom: 0;
}
.splms-dashboard-wrapper .splms-dashboard .splms-enrollment-subtabs .splms-subtab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: #6B7280;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s;
  margin-bottom: -2px;
}
.splms-dashboard-wrapper .splms-dashboard .splms-enrollment-subtabs .splms-subtab-btn:hover {
  color: #111827;
  background: #F9FAFB;
}
.splms-dashboard-wrapper .splms-dashboard .splms-enrollment-subtabs .splms-subtab-btn.is-active {
  color: #2A7AE4;
  border-bottom-color: #2A7AE4;
  font-weight: 600;
}
@media (max-width: 768px) {
  .splms-dashboard-wrapper .splms-dashboard .splms-enrollment-subtabs {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .splms-dashboard-wrapper .splms-dashboard .splms-enrollment-subtabs .splms-subtab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}
.splms-dashboard-wrapper .splms-dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.splms-dashboard-wrapper .splms-dashboard-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #F8F9FB;
  border-radius: 12px;
  border-left: 4px solid #2A7AE4;
  transition: all 0.2s;
}
.splms-dashboard-wrapper .splms-dashboard-stat-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.splms-dashboard-wrapper .splms-dashboard-stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(42, 122, 228, 0.1);
  color: #2A7AE4;
}
.splms-dashboard-wrapper .splms-dashboard-stat-card-content {
  flex: 1;
}
.splms-dashboard-wrapper .splms-dashboard-stat-card-content h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}
.splms-dashboard-wrapper .splms-dashboard-stat-card-content p {
  margin: 0;
  font-size: 0.875rem;
  color: #6B7280;
}
.splms-dashboard-wrapper .splms-dashboard-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.splms-dashboard-wrapper .splms-dashboard-course-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}
.splms-dashboard-wrapper .splms-dashboard-course-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.splms-dashboard-wrapper .splms-dashboard-empty-state {
  text-align: center;
  padding: 4rem 2rem;
}
.splms-dashboard-wrapper .splms-dashboard-empty-state svg {
  margin-bottom: 1rem;
  opacity: 0.5;
  color: #9CA3AF;
}
.splms-dashboard-wrapper .splms-dashboard-empty-state h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}
.splms-dashboard-wrapper .splms-dashboard-empty-state p {
  margin: 0;
  color: #6B7280;
}
.splms-dashboard-wrapper .splms-dashboard-login-required {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.splms-dashboard-wrapper .splms-dashboard-login-required h3 {
  margin: 0 0 1rem 0;
  color: #111827;
}
.splms-dashboard-wrapper .splms-dashboard-login-required p {
  margin: 0 0 1.5rem 0;
  color: #6B7280;
}
.splms-dashboard-wrapper .splms-spinner {
  border: 3px solid #E5E7EB;
  border-top-color: #2A7AE4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: splms-spin 0.8s linear infinite;
  margin: 2rem auto;
}
.splms-dashboard-wrapper .splms-course-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.splms-dashboard-wrapper .splms-course-content {
  padding: 1.5rem;
}
.splms-dashboard-wrapper .splms-course-content h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}
.splms-dashboard-wrapper .splms-course-content .splms-enrollment-status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}
.splms-dashboard-wrapper .splms-course-content .splms-enrollment-status-badge.splms-enrollment-status-active {
  background: #D1FAE5;
  color: #065F46;
}
.splms-dashboard-wrapper .splms-course-content .splms-enrollment-status-badge.splms-enrollment-status-completed {
  background: #DBEAFE;
  color: #1E40AF;
}
.splms-dashboard-wrapper .splms-course-content .splms-enrollment-status-badge.splms-enrollment-status-cancelled, .splms-dashboard-wrapper .splms-course-content .splms-enrollment-status-badge.splms-enrollment-status-suspended {
  background: #FEE2E2;
  color: #991B1B;
}
.splms-dashboard-wrapper .splms-course-content .splms-course-excerpt {
  margin: 0 0 1rem 0;
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.6;
}
.splms-dashboard-wrapper .splms-course-progress {
  margin: 1rem 0;
}
.splms-dashboard-wrapper .splms-course-progress-bar {
  height: 6px;
  background: #E5E7EB;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.splms-dashboard-wrapper .splms-course-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2A7AE4 0%, #3B82F6 100%);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.splms-dashboard-wrapper .splms-course-progress span {
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 500;
}
.splms-dashboard-wrapper .splms-course-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
}
.splms-dashboard-wrapper .splms-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}
.splms-dashboard-wrapper .splms-status-badge-publish, .splms-dashboard-wrapper .splms-status-badge-completed {
  background: #D1FAE5;
  color: #065F46;
}
.splms-dashboard-wrapper .splms-status-badge-draft, .splms-dashboard-wrapper .splms-status-badge-not-started {
  background: #FEE2E2;
  color: #991B1B;
}
.splms-dashboard-wrapper .splms-status-badge-pending, .splms-dashboard-wrapper .splms-status-badge-in-progress {
  background: #DBEAFE;
  color: #1E40AF;
}
.splms-dashboard-wrapper .splms-progress-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.splms-dashboard-wrapper .splms-progress-summary-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.2s;
}
.splms-dashboard-wrapper .splms-progress-summary-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.splms-dashboard-wrapper .splms-progress-summary-value {
  font-size: 2rem;
  font-weight: 700;
  color: #2A7AE4;
  margin-bottom: 0.5rem;
}
.splms-dashboard-wrapper .splms-progress-summary-label {
  font-size: 0.875rem;
  color: #6B7280;
  font-weight: 500;
}
.splms-dashboard-wrapper .splms-alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.splms-dashboard-wrapper .splms-alert-success {
  background: #D1FAE5;
  color: #065F46;
}
.splms-dashboard-wrapper .splms-alert-error {
  background: #FEE2E2;
  color: #991B1B;
}
.splms-dashboard-wrapper .splms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.splms-dashboard-wrapper .splms-btn-primary {
  background: #2A7AE4;
  color: #fff;
}
.splms-dashboard-wrapper .splms-btn-primary:hover {
  background: #1E6AD9;
  color: #fff;
}
.splms-dashboard-wrapper .splms-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.splms-dashboard-wrapper .splms-btn-secondary {
  background: #E5E7EB;
  color: #111827;
}
.splms-dashboard-wrapper .splms-btn-secondary:hover {
  background: #D1D5DB;
  color: #111827;
}
.splms-dashboard-wrapper .splms-btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.splms-dashboard-wrapper .splms-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.splms-dashboard-wrapper .splms-tooltip .splms-tooltip-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #6B7280;
  font-size: 0.8125rem;
}
.splms-dashboard-wrapper .splms-tooltip .splms-tooltip-label {
  line-height: 1;
}
.splms-dashboard-wrapper .splms-tooltip .splms-tooltip-content {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 50;
  min-width: 220px;
  background: #111827;
  color: #F9FAFB;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.splms-dashboard-wrapper .splms-tooltip .splms-tooltip-content p {
  margin: 0;
}
.splms-dashboard-wrapper .splms-tooltip:hover .splms-tooltip-content, .splms-dashboard-wrapper .splms-tooltip:focus-within .splms-tooltip-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.splms-dashboard-wrapper .splms-tooltip .splms-tooltip-info {
  background: #111827;
}
.splms-dashboard-wrapper .splms-tooltip .splms-tooltip-error {
  background: #991B1B;
}

.splms-dashboard-page-template {
  width: 100%;
  min-height: 80vh;
  padding: 0;
}
.splms-dashboard-page-template .splms-dashboard-wrapper .splms-dashboard {
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  min-height: calc(100vh - 80px);
}

.splms-breadcrumb-wrapper {
  background: #ffffff;
  padding: 1rem 0;
  margin-bottom: 0;
}
.splms-breadcrumb-wrapper .splms-breadcrumb-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 640px) {
  .splms-breadcrumb-wrapper .splms-breadcrumb-container {
    padding: 0 1rem;
  }
}
.splms-breadcrumb-wrapper .splms-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #475569;
}
.splms-breadcrumb-wrapper .splms-breadcrumb .splms-breadcrumb__link {
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-breadcrumb-wrapper .splms-breadcrumb .splms-breadcrumb__link:hover {
  color: #7e75ff;
}
.splms-breadcrumb-wrapper .splms-breadcrumb .splms-breadcrumb__separator {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.splms-hero__enrollment-card .splms-course-includes {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  margin-top: 1.5rem;
}
.splms-hero__enrollment-card .splms-course-includes__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem 0;
}
.splms-hero__enrollment-card .splms-course-includes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.splms-hero__enrollment-card .splms-course-includes__list .splms-includes-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}
.splms-hero__enrollment-card .splms-course-includes__list .splms-includes-item svg {
  width: 18px;
  height: 18px;
  color: #7e75ff;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-course-includes__list .splms-includes-item span {
  flex: 1;
}
.splms-hero__enrollment-card .splms-secondary-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  margin-top: 1.5rem;
}
.splms-hero__enrollment-card .splms-secondary-actions .splms-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.splms-hero__enrollment-card .splms-secondary-actions .splms-action-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-secondary-actions .splms-action-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.splms-hero__enrollment-card .splms-secondary-actions .splms-action-btn--wishlist.is-active {
  background: linear-gradient(135deg, #e74c3c 0%, #dc2626 100%);
  border-color: #e74c3c;
  color: #ffffff;
}
.splms-hero__enrollment-card .splms-secondary-actions .splms-action-btn--wishlist.is-active svg {
  color: #ffffff;
}
.splms-hero__enrollment-card .splms-secondary-actions .splms-action-btn--wishlist.is-active:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-color: #dc2626;
}
.splms-hero__enrollment-card .splms-secondary-actions .splms-action-btn--share:hover {
  background: #7e75ff;
  border-color: #7e75ff;
  color: #ffffff;
}
.splms-hero__enrollment-card .splms-secondary-actions .splms-action-btn--share:hover svg {
  color: #ffffff;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-status-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.25rem;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-status-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-status-badge--enrolled {
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.3);
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-status-badge--completed {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-completion-message {
  padding: 1rem;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-completion-message p {
  margin: 0;
  color: #374151;
  line-height: 1.5;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-circle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-circle-container .splms-progress-circle {
  position: relative;
  width: 100px;
  height: 100px;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-circle-container .splms-progress-circle .splms-progress-ring {
  transform: rotate(-90deg);
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-circle-container .splms-progress-circle .splms-progress-ring .splms-progress-ring-circle-bg {
  stroke: #e5e7eb;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-circle-container .splms-progress-circle .splms-progress-ring .splms-progress-ring-circle {
  transition: stroke-dashoffset 1s ease;
  stroke-linecap: round;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-circle-container .splms-progress-circle .splms-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-circle-container .splms-progress-circle .splms-progress-text .splms-progress-percentage {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-stats {
  margin-bottom: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(126, 117, 255, 0.15);
  border-radius: 8px;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-stats .splms-progress-stats__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-stats .splms-progress-stats__header .splms-progress-stats__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-stats .splms-progress-stats__header .splms-progress-stats__value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #7e75ff;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-stats .splms-progress-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-stats .splms-progress-bar .splms-progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #7e75ff 0%, #10b981 100%);
  border-radius: 4px;
  transition: width 0.6s ease;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-progress-stats .splms-progress-stats__details {
  font-size: 0.75rem;
  color: #475569;
  text-align: center;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section {
  margin-bottom: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.08) 0%, rgba(126, 117, 255, 0.03) 100%);
  border: 1px solid rgba(126, 117, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__title:hover {
  color: #7e75ff;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__title .splms-up-next__title-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__title .splms-up-next__title-content svg {
  width: 16px;
  height: 16px;
  color: #7e75ff;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__title .splms-up-next__toggle-icon {
  width: 16px;
  height: 16px;
  color: #475569;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__title[aria-expanded=false] {
  margin-bottom: 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__title[aria-expanded=false] .splms-up-next__toggle-icon {
  transform: rotate(-90deg);
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__title[aria-expanded=true] {
  margin-bottom: 0.625rem;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__content {
  max-height: 200px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__content .splms-up-next__section {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 0.375rem 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__content .splms-up-next__lesson {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  margin: 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section .splms-up-next__content .splms-up-next__lesson svg {
  width: 14px;
  height: 14px;
  color: #7e75ff;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-up-next-section.collapsed .splms-up-next__content {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-recently-completed-section {
  margin-bottom: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 8px;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-recently-completed-section .splms-recently-completed__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.625rem 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-recently-completed-section .splms-recently-completed__title svg {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-recently-completed-section .splms-recently-completed__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-recently-completed-section .splms-recently-completed__list .splms-recently-completed__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 6px;
  transition: all 0.2s ease;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-recently-completed-section .splms-recently-completed__list .splms-recently-completed__item:hover {
  border-color: #10b981;
  transform: translateX(4px);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.1);
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-recently-completed-section .splms-recently-completed__list .splms-recently-completed__item svg {
  width: 14px;
  height: 14px;
  color: #10b981;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-recently-completed-section .splms-recently-completed__list .splms-recently-completed__item a {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.3;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-recently-completed-section .splms-recently-completed__list .splms-recently-completed__item a:hover {
  color: #10b981;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-recently-completed-section.empty .splms-recently-completed__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  color: #475569;
  font-size: 0.8125rem;
  font-style: italic;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-btn--resume {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.3);
  transition: all 0.3s ease;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-btn--resume svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-btn--resume:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 117, 255, 0.4);
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-btn--resume:active {
  transform: translateY(0);
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-btn--view-curriculum {
  margin-bottom: 1rem;
}
.splms-hero__enrollment-card .splms-enrolled-state .splms-btn--unenroll {
  margin-top: 0.5rem;
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-status-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.25rem;
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-status-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-status-badge--partial {
  background: linear-gradient(135deg, #ff6900 0%, #d97706 100%);
  box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-status-badge--complete {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-section-purchase-info {
  margin-bottom: 1.25rem;
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-section-purchase-info .splms-section-purchase-message {
  font-size: 0.9375rem;
  color: #374151;
  text-align: center;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-section-purchase-info .splms-purchased-sections-list {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 105, 0, 0.05) 0%, rgba(255, 105, 0, 0.02) 100%);
  border: 1px solid rgba(255, 105, 0, 0.15);
  border-radius: 8px;
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-section-purchase-info .splms-purchased-sections-list .splms-purchased-sections-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 0.75rem 0;
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-section-purchase-info .splms-purchased-sections-list .splms-sections-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-section-purchase-info .splms-purchased-sections-list .splms-sections-list .splms-section-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(255, 105, 0, 0.2);
  border-radius: 6px;
  font-size: 0.875rem;
  color: #111827;
  font-weight: 500;
  transition: all 0.2s ease;
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-section-purchase-info .splms-purchased-sections-list .splms-sections-list .splms-section-item svg {
  width: 14px;
  height: 14px;
  color: #ff6900;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-section-purchase-info .splms-purchased-sections-list .splms-sections-list .splms-section-item:hover {
  border-color: #ff6900;
  transform: translateX(4px);
  box-shadow: 0 2px 6px rgba(255, 105, 0, 0.1);
}
.splms-hero__enrollment-card .splms-section-purchase-state .splms-btn--primary {
  margin-bottom: 1rem;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-purchase-section-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-purchase-section-footer .splms-price-container {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-purchase-section-footer .splms-price-container .price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7e75ff;
  margin: 0;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-purchase-section-footer .splms-price-container .price-regular {
  font-size: 1rem;
  color: #6b7280;
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-purchase-section-footer .splms-enrollment-action {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-row:hover {
  background: #f9fafb;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-row.has-border {
  border-bottom: 1px solid #f3f4f6;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-left {
  flex: 1;
  min-width: 0;
  padding-right: 16px;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-title {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #1f2937;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-label {
  margin: 0 0 6px 0;
  font-size: 13px;
  color: #6b7280;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-badge--purchased {
  background: #d1fae5;
  color: #065f46;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-badge--free {
  background: #d1fae5;
  color: #065f46;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-badge--price {
  background: #fee2e2;
  color: #991b1b;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-arrow {
  color: #9ca3af;
  flex-shrink: 0;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-sections-scroll-container {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f3f4f6;
  max-height: 450px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-sections-scroll-container::-webkit-scrollbar {
  width: 8px;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-sections-scroll-container::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 4px;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-sections-scroll-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-sections-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-availability-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  margin-top: 1.25rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.05) 0%, rgba(126, 117, 255, 0.02) 100%);
  border: 1px solid rgba(126, 117, 255, 0.15);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-availability-notice:hover {
  border-color: rgba(126, 117, 255, 0.3);
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.08) 0%, rgba(126, 117, 255, 0.03) 100%);
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-availability-notice > svg {
  width: 18px;
  height: 18px;
  color: #7e75ff;
  flex-shrink: 0;
  margin-top: 2px;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-availability-notice .splms-notice-content {
  flex: 1;
  min-width: 0;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-availability-notice .splms-notice-content p {
  font-size: 0.875rem;
  color: #374151;
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-availability-notice .splms-notice-content .splms-notice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7e75ff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-availability-notice .splms-notice-content .splms-notice-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-availability-notice .splms-notice-content .splms-notice-link:hover {
  color: #6b5fff;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-section-availability-notice .splms-notice-content .splms-notice-link:hover svg {
  transform: translateX(2px);
}
.splms-hero__enrollment-card .splms-purchase-section .splms-upgrade-section {
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.05) 0%, rgba(126, 117, 255, 0.02) 100%);
  border: 2px solid rgba(126, 117, 255, 0.2);
  border-radius: 10px;
  margin-top: 1rem;
  width: 100%;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-upgrade-section .splms-upgrade-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-upgrade-section .splms-upgrade-banner svg {
  width: 20px;
  height: 20px;
  color: #7e75ff;
  flex-shrink: 0;
  margin-top: 2px;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-upgrade-section .splms-upgrade-banner .splms-upgrade-text {
  flex: 1;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-upgrade-section .splms-upgrade-banner .splms-upgrade-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-upgrade-section .splms-upgrade-banner .splms-upgrade-text p {
  font-size: 0.875rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-upgrade-section .splms-upgrade-banner .splms-upgrade-text p strong {
  color: #7e75ff;
  font-weight: 700;
}
.splms-hero__enrollment-card .splms-purchase-section .splms-upgrade-section .splms-btn--secondary {
  width: 100%;
}

.splms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.splms-btn--primary {
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.3);
}
.splms-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 117, 255, 0.4);
}
.splms-btn--primary:active {
  transform: translateY(0);
}
.splms-btn--secondary {
  background: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
}
.splms-btn--secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-2px);
}
.splms-btn--large {
  padding: 1.125rem 1.75rem;
  font-size: 1.125rem;
}
.splms-btn--block {
  width: 100%;
}
.splms-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .splms-mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .splms-mobile-sticky-bar .splms-mobile-price {
    flex: 0 0 auto;
  }
  .splms-mobile-sticky-bar .splms-mobile-price .splms-price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7e75ff;
    margin: 0;
  }
  .splms-mobile-sticky-bar .splms-mobile-price .splms-price-regular {
    font-size: 1rem;
    color: #6b7280;
    text-decoration: line-through;
    margin-left: 0.5rem;
  }
  .splms-mobile-sticky-bar .splms-mobile-cta {
    flex: 1;
  }
  .splms-mobile-sticky-bar .splms-mobile-cta .splms-btn {
    width: 100%;
  }
  .splms-single-course {
    padding-bottom: 5rem;
  }
}
@keyframes slideInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.splms-purchase-card {
  animation: slideInUp 0.5s ease-out;
}

.splms-course-includes__list .splms-includes-item {
  animation: fadeIn 0.5s ease-out;
  animation-fill-mode: both;
}
.splms-course-includes__list .splms-includes-item:nth-child(1) {
  animation-delay: 0.05s;
}
.splms-course-includes__list .splms-includes-item:nth-child(2) {
  animation-delay: 0.1s;
}
.splms-course-includes__list .splms-includes-item:nth-child(3) {
  animation-delay: 0.15s;
}
.splms-course-includes__list .splms-includes-item:nth-child(4) {
  animation-delay: 0.2s;
}
.splms-course-includes__list .splms-includes-item:nth-child(5) {
  animation-delay: 0.25s;
}
.splms-course-includes__list .splms-includes-item:nth-child(6) {
  animation-delay: 0.3s;
}
.splms-course-includes__list .splms-includes-item:nth-child(7) {
  animation-delay: 0.35s;
}
.splms-course-includes__list .splms-includes-item:nth-child(8) {
  animation-delay: 0.4s;
}
.splms-course-includes__list .splms-includes-item:nth-child(9) {
  animation-delay: 0.45s;
}
.splms-course-includes__list .splms-includes-item:nth-child(10) {
  animation-delay: 0.5s;
}

.splms-btn:focus-visible,
.splms-action-btn:focus-visible,
.splms-category-tag:focus-visible {
  outline: 3px solid #7e75ff;
  outline-offset: 2px;
}

@media print {
  .splms-breadcrumb-wrapper,
  .splms-purchase-card,
  .splms-secondary-actions,
  .splms-mobile-sticky-bar {
    display: none !important;
  }
}
.splms-nav-wrapper--v2 {
  background: #ffffff;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .splms-nav-wrapper--v2 {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease;
  }
  .splms-nav-wrapper--v2.is-stuck {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
.splms-nav-wrapper--v2 .splms-nav-container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .splms-nav-wrapper--v2 .splms-nav-container {
    padding: 0 1rem;
  }
}
.splms-nav-wrapper--v2 .splms-course-navigation {
  width: 100%;
}
.splms-nav-wrapper--v2 .splms-nav-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.splms-nav-wrapper--v2 .splms-nav-tabs::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .splms-nav-wrapper--v2 .splms-nav-tabs {
    justify-content: flex-start;
  }
}
.splms-nav-wrapper--v2 .splms-nav-item {
  flex-shrink: 0;
}
.splms-nav-wrapper--v2 .splms-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.splms-nav-wrapper--v2 .splms-nav-link svg {
  flex-shrink: 0;
  color: #6b7280;
  transition: color 0.2s ease;
}
.splms-nav-wrapper--v2 .splms-nav-link:hover {
  color: #7e75ff;
  background: rgba(126, 117, 255, 0.05);
  border-bottom-color: rgba(126, 117, 255, 0.3);
}
.splms-nav-wrapper--v2 .splms-nav-link:hover svg {
  color: #7e75ff;
}
.splms-nav-wrapper--v2 .splms-nav-link.splms-nav-link--active {
  color: #7e75ff;
  border-bottom-color: #7e75ff;
  font-weight: 600;
}
.splms-nav-wrapper--v2 .splms-nav-link.splms-nav-link--active svg {
  color: #7e75ff;
}
@media (max-width: 640px) {
  .splms-nav-wrapper--v2 .splms-nav-link {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
  .splms-nav-wrapper--v2 .splms-nav-link .splms-nav-link__text {
    display: none;
  }
  .splms-nav-wrapper--v2 .splms-nav-link svg {
    width: 22px;
    height: 22px;
  }
}

.splms-single-course .course-main-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .splms-single-course .course-main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem 2rem;
  }
  .splms-single-course .course-main-content .course-sidebar {
    order: 1;
  }
  .splms-single-course .course-main-content .course-content-area {
    order: 2;
  }
}
.splms-single-course .course-content-area {
  min-width: 0;
}
@media (min-width: 1024px) {
  .splms-single-course .course-sidebar {
    position: sticky;
    top: 6rem;
  }
}

.splms-tab-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 640px) {
  .splms-tab-content {
    padding: 1.5rem;
    border-radius: 8px;
  }
}
.splms-tab-content .splms-overview-section {
  margin-bottom: 2.5rem;
}
.splms-tab-content .splms-overview-section:last-child {
  margin-bottom: 0;
}
.splms-tab-content .splms-overview-section .splms-overview-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}
@media (max-width: 640px) {
  .splms-tab-content .splms-overview-section .splms-overview-section__title {
    font-size: 1.25rem;
  }
}
.splms-tab-content .splms-overview-section .splms-overview-section__content {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}
.splms-tab-content .splms-overview-section .splms-overview-section__content p {
  margin: 0 0 1rem 0;
}
.splms-tab-content .splms-overview-section .splms-overview-section__content p:last-child {
  margin-bottom: 0;
}
.splms-tab-content .splms-overview-section .splms-overview-section__content ul,
.splms-tab-content .splms-overview-section .splms-overview-section__content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.splms-tab-content .splms-overview-section .splms-overview-section__content ul li,
.splms-tab-content .splms-overview-section .splms-overview-section__content ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.splms-tab-content .splms-overview-section .splms-overview-section__content ul li:last-child,
.splms-tab-content .splms-overview-section .splms-overview-section__content ol li:last-child {
  margin-bottom: 0;
}
.splms-tab-content .splms-overview-section .splms-overview-section__content ul li {
  position: relative;
  list-style: none;
  padding-left: 1.5rem;
}
.splms-tab-content .splms-overview-section .splms-overview-section__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #7e75ff;
  border-radius: 50%;
}
.splms-tab-content .splms-learning-outcomes {
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.05) 0%, rgba(126, 117, 255, 0.02) 100%);
  border: 2px solid rgba(126, 117, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 640px) {
  .splms-tab-content .splms-learning-outcomes {
    padding: 1.5rem;
  }
}
.splms-tab-content .splms-learning-outcomes .splms-learning-outcomes__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.splms-tab-content .splms-learning-outcomes .splms-learning-outcomes__title svg {
  width: 24px;
  height: 24px;
  color: #7e75ff;
}
.splms-tab-content .splms-learning-outcomes .splms-learning-outcomes__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .splms-tab-content .splms-learning-outcomes .splms-learning-outcomes__list {
    grid-template-columns: 1fr;
  }
}
.splms-tab-content .splms-learning-outcomes .splms-learning-outcomes__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}
.splms-tab-content .splms-learning-outcomes .splms-learning-outcomes__list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #10b981;
  margin-top: 2px;
}
.splms-tab-content .splms-requirements .splms-requirements__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.splms-tab-content .splms-requirements .splms-requirements__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #374151;
}
.splms-tab-content .splms-requirements .splms-requirements__list li:last-child {
  margin-bottom: 0;
}
.splms-tab-content .splms-requirements .splms-requirements__list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #7e75ff;
  margin-top: 2px;
}

.course-content-tabs .course-content-section {
  background: #ffffff;
  border-radius: 12px;
}
@media (max-width: 640px) {
  .course-content-tabs .course-content-section {
    padding: 1.5rem;
    border-radius: 8px;
  }
}
.course-content-tabs .course-content-section .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.course-content-tabs .course-content-section .section-title svg {
  flex-shrink: 0;
  color: #7e75ff;
}
@media (max-width: 640px) {
  .course-content-tabs .course-content-section .section-title {
    font-size: 1.5rem;
  }
}
.course-content-tabs .course-content-section .section-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 2rem 0 1rem 0;
}
.course-content-tabs .course-content-section .section-content h3:first-child {
  margin-top: 0;
}
.course-content-tabs .course-overview .course-learning-outcomes,
.course-content-tabs .course-overview .course-requirements {
  margin-top: 2rem;
}
.course-content-tabs .course-overview .course-learning-outcomes h3,
.course-content-tabs .course-overview .course-requirements h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.course-content-tabs .course-overview .course-learning-outcomes h3 svg,
.course-content-tabs .course-overview .course-requirements h3 svg {
  width: 20px;
  height: 20px;
  color: #7e75ff;
}
.course-content-tabs .course-overview .learning-outcomes-content,
.course-content-tabs .course-overview .requirements-content {
  margin-top: 1rem;
}
.course-content-tabs .course-overview .learning-outcomes-content ul,
.course-content-tabs .course-overview .requirements-content ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 640px) {
  .course-content-tabs .course-overview .learning-outcomes-content ul,
  .course-content-tabs .course-overview .requirements-content ul {
    grid-template-columns: 1fr;
  }
}
.course-content-tabs .course-overview .learning-outcomes-content ul li,
.course-content-tabs .course-overview .requirements-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #7e75ff;
  transition: all 0.2s ease;
}
.course-content-tabs .course-overview .learning-outcomes-content ul li:hover,
.course-content-tabs .course-overview .requirements-content ul li:hover {
  background: #f3f4f6;
  border-left-color: #6b5fff;
  transform: translateX(4px);
}
.course-content-tabs .course-overview .learning-outcomes-content ul li::before,
.course-content-tabs .course-overview .requirements-content ul li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 2px;
}
.course-content-tabs .course-overview .learning-outcomes-content p,
.course-content-tabs .course-overview .requirements-content p {
  line-height: 1.7;
  color: #374151;
}
.course-content-tabs .course-curriculum .curriculum-overview {
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.05) 0%, rgba(126, 117, 255, 0.02) 100%);
  border: 1px solid rgba(126, 117, 255, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}
.course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats .stat-item:hover {
  border-color: #7e75ff;
  box-shadow: 0 2px 8px rgba(126, 117, 255, 0.1);
}
.course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 117, 255, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}
.course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-icon svg {
  width: 20px;
  height: 20px;
  color: #7e75ff;
}
.course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-content {
  flex: 1;
  min-width: 0;
}
.course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-content .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-content .stat-label {
  font-size: 0.8125rem;
  color: #475569;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats .stat-item.progress-stat .stat-icon {
  background: rgba(16, 185, 129, 0.1);
}
.course-content-tabs .course-curriculum .curriculum-overview .curriculum-stats .stat-item.progress-stat .stat-icon svg {
  color: #10b981;
}
.course-content-tabs .course-curriculum .curriculum-overview .course-progress-section {
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.course-content-tabs .course-curriculum .curriculum-overview .course-progress-section .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.course-content-tabs .course-curriculum .curriculum-overview .course-progress-section .progress-header .progress-label {
  font-weight: 600;
  color: #111827;
}
.course-content-tabs .course-curriculum .curriculum-overview .course-progress-section .progress-header .progress-percentage {
  font-weight: 700;
  font-size: 1.125rem;
  color: #7e75ff;
}
.course-content-tabs .course-curriculum .curriculum-overview .course-progress-section .progress-bar-container {
  height: 12px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.course-content-tabs .course-curriculum .curriculum-overview .course-progress-section .progress-bar-container .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #7e75ff 100%);
  border-radius: 6px;
  transition: width 0.3s ease;
}
.course-content-tabs .course-curriculum .curriculum-overview .course-progress-section .progress-details {
  font-size: 0.875rem;
  color: #475569;
  text-align: center;
}
.course-content-tabs .course-curriculum .curriculum-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section.section-locked {
  background: #f9fafb;
  opacity: 0.9;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section.section-locked .section-header {
  background: linear-gradient(135deg, rgba(156, 163, 175, 0.1) 0%, rgba(107, 114, 128, 0.1) 100%);
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header:hover {
  background: #f9fafb;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-info {
  flex: 1;
  min-width: 0;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem 0;
  padding: 0;
  border: none;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #475569;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .item-count {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .section-progress {
  color: #7e75ff;
  font-weight: 500;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .section-pricing-badge {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-purchase-btn {
  flex-shrink: 0;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-toggle svg {
  width: 20px;
  height: 20px;
  color: #475569;
  transition: transform 0.3s ease;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-toggle:hover {
  background: #e5e7eb;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-header .section-toggle[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content {
  border-top: 1px solid #e5e7eb;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item:last-child {
  border-bottom: none;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item:hover {
  background: #f9fafb;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.completed .item-status .status-icon {
  color: #10b981;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.locked {
  opacity: 0.6;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.locked .item-title {
  cursor: not-allowed;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.guest-preview .item-status .status-icon {
  color: #7e75ff;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status {
  flex-shrink: 0;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon svg {
  width: 16px;
  height: 16px;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon.completed svg {
  color: #10b981;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon.incomplete svg {
  color: #9ca3af;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon.guest-preview svg {
  color: #7e75ff;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon.locked svg {
  color: #6b7280;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-type-icon {
  flex-shrink: 0;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-type-icon svg {
  width: 18px;
  height: 18px;
  color: #475569;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content {
  flex: 1;
  min-width: 0;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-title {
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  margin-bottom: 0.25rem;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-title:hover {
  color: #7e75ff;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #475569;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-meta .item-type-label {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-meta .item-duration {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-meta .item-duration svg {
  width: 14px;
  height: 14px;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .completion-badge {
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .start-btn,
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .preview-btn {
  padding: 0.375rem 0.875rem;
  background: #ffffff;
  border: 1px solid #7e75ff;
  color: #7e75ff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .start-btn:hover,
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .preview-btn:hover {
  background: #7e75ff;
  color: #ffffff;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .preview-btn {
  border-color: #9ca3af;
  color: #374151;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .preview-btn:hover {
  background: #374151;
  border-color: #374151;
  color: #ffffff;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .locked-badge {
  padding: 0.375rem 0.75rem;
  background: #e5e7eb;
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item svg {
  width: 16px;
  height: 16px;
  color: #475569;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item:hover {
  border-color: #7e75ff;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item:hover svg {
  color: #7e75ff;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item.active, .course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item.bookmarked {
  background: #7e75ff;
  border-color: #7e75ff;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item.active svg, .course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item.bookmarked svg {
  color: #ffffff;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .empty-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #475569;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .empty-section svg {
  width: 32px;
  height: 32px;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.course-content-tabs .course-curriculum .curriculum-content .curriculum-section .section-content .empty-section p {
  margin: 0;
  font-size: 0.9375rem;
}
.course-content-tabs .course-curriculum .no-curriculum {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.course-content-tabs .course-curriculum .no-curriculum .no-curriculum-icon {
  margin-bottom: 1.5rem;
}
.course-content-tabs .course-curriculum .no-curriculum .no-curriculum-icon svg {
  width: 64px;
  height: 64px;
  color: #9ca3af;
}
.course-content-tabs .course-curriculum .no-curriculum h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem 0;
}
.course-content-tabs .course-curriculum .no-curriculum p {
  color: #475569;
  margin: 0;
  max-width: 500px;
}
.course-content-tabs .course-instructor .instructor-profile-header {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
}
@media (max-width: 768px) {
  .course-content-tabs .course-instructor .instructor-profile-header {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-avatar-container {
  flex-shrink: 0;
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-avatar-container .instructor-avatar-large {
  position: relative;
  display: inline-block;
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-avatar-container .instructor-avatar-large img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-avatar-container .instructor-avatar-large .instructor-verified-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-avatar-container .instructor-avatar-large .instructor-verified-badge svg {
  width: 14px;
  height: 14px;
  color: #ffffff;
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-info-container {
  flex: 1;
  min-width: 0;
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-info-container .instructor-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.375rem 0;
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-info-container .instructor-role {
  font-size: 0.875rem;
  color: #475569;
  margin: 0 0 1rem 0;
  font-weight: 500;
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-info-container .instructor-stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-info-container .instructor-stats-inline .stat-inline-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #374151;
  font-weight: 500;
}
.course-content-tabs .course-instructor .instructor-profile-header .instructor-info-container .instructor-stats-inline .stat-inline-item svg {
  width: 18px;
  height: 18px;
  color: #7e75ff;
  flex-shrink: 0;
}
.course-content-tabs .course-instructor .instructor-bio-section {
  margin-bottom: 2rem;
}
.course-content-tabs .course-instructor .instructor-bio-section .bio-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem 0;
}
.course-content-tabs .course-instructor .instructor-bio-section .instructor-bio-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}
.course-content-tabs .course-instructor .instructor-bio-section .instructor-bio-content p {
  margin: 0 0 1rem 0;
}
.course-content-tabs .course-instructor .instructor-bio-section .instructor-bio-content p:last-child {
  margin-bottom: 0;
}
.course-content-tabs .course-instructor .instructor-other-courses-section {
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem 0;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal:hover {
  border-color: #7e75ff;
  box-shadow: 0 2px 8px rgba(126, 117, 255, 0.1);
  transform: translateX(4px);
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-thumbnail {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e7eb;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-thumbnail a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-thumbnail a .course-thumbnail-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-thumbnail a .course-thumbnail-placeholder svg {
  width: 32px;
  height: 32px;
  color: #9ca3af;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-content .course-card-title {
  margin: 0 0 0.5rem 0;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-content .course-card-title a {
  color: #111827;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.2s ease;
  display: block;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-content .course-card-title a:hover {
  color: #7e75ff;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-content .course-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  flex-wrap: wrap;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-content .course-card-meta .course-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-content .course-card-meta .course-meta-item svg {
  width: 14px;
  height: 14px;
  color: #6b7280;
  flex-shrink: 0;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-content .course-card-meta .course-meta-separator {
  color: #9ca3af;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .other-courses-list .course-card-horizontal .course-card-content .course-card-meta .course-price-meta {
  font-weight: 600;
  color: #7e75ff;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .view-all-courses-footer {
  text-align: center;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .view-all-courses-footer .btn-view-all-courses {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 2px solid #7e75ff;
  color: #7e75ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .view-all-courses-footer .btn-view-all-courses svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.course-content-tabs .course-instructor .instructor-other-courses-section .view-all-courses-footer .btn-view-all-courses:hover {
  background: #7e75ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.2);
}
.course-content-tabs .course-instructor .instructor-other-courses-section .view-all-courses-footer .btn-view-all-courses:hover svg {
  color: #ffffff;
  transform: translateX(2px);
}
.course-content-tabs .course-reviews .reviews-summary {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.03) 0%, rgba(126, 117, 255, 0.01) 100%);
  border: 1px solid rgba(126, 117, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .course-content-tabs .course-reviews .reviews-summary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}
.course-content-tabs .course-reviews .reviews-summary .overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.course-content-tabs .course-reviews .reviews-summary .overall-rating .rating-score .score-number {
  font-size: 4rem;
  font-weight: 700;
  color: #7e75ff;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.course-content-tabs .course-reviews .reviews-summary .overall-rating .rating-score .rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  justify-content: center;
}
.course-content-tabs .course-reviews .reviews-summary .overall-rating .rating-score .rating-stars .star {
  font-size: 1.5rem;
  color: #d1d5db;
}
.course-content-tabs .course-reviews .reviews-summary .overall-rating .rating-score .rating-stars .star.filled {
  color: #f59e0b;
}
.course-content-tabs .course-reviews .reviews-summary .overall-rating .rating-score .rating-text {
  font-size: 0.9375rem;
  color: #475569;
  margin: 0;
}
.course-content-tabs .course-reviews .reviews-summary .rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
.course-content-tabs .course-reviews .reviews-summary .rating-breakdown .rating-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.course-content-tabs .course-reviews .reviews-summary .rating-breakdown .rating-bar .rating-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  min-width: 60px;
}
.course-content-tabs .course-reviews .reviews-summary .rating-breakdown .rating-bar .progress-bar {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}
.course-content-tabs .course-reviews .reviews-summary .rating-breakdown .rating-bar .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.course-content-tabs .course-reviews .reviews-summary .rating-breakdown .rating-bar .rating-percentage {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  min-width: 40px;
  text-align: right;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-header .reviews-filter .reviews-sort {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-header .reviews-filter .reviews-sort:hover {
  border-color: #7e75ff;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-header .reviews-filter .reviews-sort:focus {
  outline: none;
  border-color: #7e75ff;
  box-shadow: 0 0 0 3px rgba(126, 117, 255, 0.1);
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item.instructor-review, .course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item.course-author-review {
  background: rgba(126, 117, 255, 0.02);
  border-color: rgba(126, 117, 255, 0.2);
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .student-info {
  display: flex;
  gap: 1rem;
  flex: 1;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .student-info .student-avatar {
  flex-shrink: 0;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .student-info .student-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .student-info .student-details {
  flex: 1;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .student-info .student-details .student-name {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem 0;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .student-info .student-details .review-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .student-info .student-details .review-meta .review-rating {
  display: flex;
  gap: 0.125rem;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .student-info .student-details .review-meta .review-rating .star {
  font-size: 1rem;
  color: #d1d5db;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .student-info .student-details .review-meta .review-rating .star.filled {
  color: #f59e0b;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .student-info .student-details .review-meta .review-date {
  color: #475569;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .reviewer-role {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: #f3f4f6;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-header .reviewer-role svg {
  width: 14px;
  height: 14px;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1rem;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-text p {
  margin: 0 0 1rem 0;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-text p:last-child {
  margin-bottom: 0;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-text em {
  color: #6b7280;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-actions {
  display: flex;
  gap: 0.75rem;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-actions .helpful-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-actions .helpful-btn svg {
  width: 16px;
  height: 16px;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-actions .helpful-btn:hover {
  border-color: #7e75ff;
  color: #7e75ff;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-actions .helpful-btn:hover svg {
  color: #7e75ff;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-actions .helpful-btn.active {
  background: #7e75ff;
  border-color: #7e75ff;
  color: #ffffff;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-actions .helpful-btn.active svg {
  color: #ffffff;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .review-content .review-actions .helpful-btn .helpful-count {
  font-weight: 600;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .instructor-reply {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(126, 117, 255, 0.05);
  border-left: 3px solid #7e75ff;
  border-radius: 8px;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .instructor-reply .reply-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .instructor-reply .reply-header .instructor-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .instructor-reply .reply-header .reply-author {
  flex: 1;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .instructor-reply .reply-header .reply-author strong {
  color: #111827;
  font-weight: 600;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .instructor-reply .reply-header .reply-date {
  font-size: 0.8125rem;
  color: #475569;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .instructor-reply .reply-content .reply-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
}
.course-content-tabs .course-reviews .reviews-list-container .reviews-list .review-item .instructor-reply .reply-content .reply-text p {
  margin: 0;
}
.course-content-tabs .course-reviews .reviews-list-container .load-more-reviews {
  text-align: center;
  margin-top: 2rem;
}
.course-content-tabs .course-reviews .reviews-list-container .load-more-reviews .load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 2px solid #d1d5db;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.course-content-tabs .course-reviews .reviews-list-container .load-more-reviews .load-more-btn svg {
  width: 16px;
  height: 16px;
}
.course-content-tabs .course-reviews .reviews-list-container .load-more-reviews .load-more-btn:hover {
  border-color: #7e75ff;
  color: #7e75ff;
  transform: translateY(2px);
}
.course-content-tabs .course-reviews .reviews-list-container .load-more-reviews .load-more-btn:hover svg {
  color: #7e75ff;
}
.course-content-tabs .course-reviews .no-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.course-content-tabs .course-reviews .no-reviews .no-reviews-icon {
  margin-bottom: 1.5rem;
}
.course-content-tabs .course-reviews .no-reviews .no-reviews-icon svg {
  width: 64px;
  height: 64px;
  color: #9ca3af;
}
.course-content-tabs .course-reviews .no-reviews h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem 0;
}
.course-content-tabs .course-reviews .no-reviews p {
  color: #475569;
  margin: 0;
  max-width: 500px;
}
.course-content-tabs .course-reviews .add-review-section {
  margin-top: 2rem;
  padding: 2rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
}
.course-content-tabs .course-reviews .add-review-section .add-review-header {
  margin-bottom: 1.5rem;
}
.course-content-tabs .course-reviews .add-review-section .add-review-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
}
.course-content-tabs .course-reviews .add-review-section .add-review-header h3 svg {
  width: 20px;
  height: 20px;
  color: #7e75ff;
}
.course-content-tabs .course-reviews .add-review-section .add-review-header p {
  color: #475569;
  margin: 0;
  font-size: 0.9375rem;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group {
  margin-bottom: 1.5rem;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group:last-child {
  margin-bottom: 0;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group .form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group .form-label svg {
  width: 18px;
  height: 18px;
  color: #7e75ff;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group.rating-input .star-rating-input {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group.rating-input .star-rating-input .star-btn {
  font-size: 2rem;
  color: #d1d5db;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group.rating-input .star-rating-input .star-btn:hover, .course-content-tabs .course-reviews .add-review-section .review-form .form-group.rating-input .star-rating-input .star-btn.active {
  color: #f59e0b;
  transform: scale(1.1);
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group.rating-input .rating-description {
  font-size: 0.875rem;
  font-weight: 600;
  color: #7e75ff;
  min-height: 1.5rem;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group.comment-input textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #111827;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group.comment-input textarea:focus {
  outline: none;
  border-color: #7e75ff;
  box-shadow: 0 0 0 3px rgba(126, 117, 255, 0.1);
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group.comment-input textarea::placeholder {
  color: #6b7280;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-group.comment-input .character-counter {
  text-align: right;
  font-size: 0.8125rem;
  color: #475569;
  margin-top: 0.5rem;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-actions {
  display: flex;
  gap: 1rem;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-actions button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-actions button svg {
  width: 18px;
  height: 18px;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-actions button.btn-primary {
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(126, 117, 255, 0.3);
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-actions button.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.4);
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-actions button.btn-secondary {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #374151;
}
.course-content-tabs .course-reviews .add-review-section .review-form .form-actions button.btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}
.course-content-tabs .course-reviews .login-to-review {
  margin-top: 2rem;
}
.course-content-tabs .course-reviews .login-to-review .login-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  text-align: center;
}
.course-content-tabs .course-reviews .login-to-review .login-prompt svg {
  width: 48px;
  height: 48px;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.course-content-tabs .course-reviews .login-to-review .login-prompt h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
}
.course-content-tabs .course-reviews .login-to-review .login-prompt p {
  color: #475569;
  margin: 0 0 1.5rem 0;
  max-width: 400px;
}
.course-content-tabs .course-reviews .login-to-review .login-prompt .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(126, 117, 255, 0.3);
  transition: all 0.2s ease;
}
.course-content-tabs .course-reviews .login-to-review .login-prompt .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.4);
}

.course-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.course-sidebar-content .sidebar-widget {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.course-sidebar-content .sidebar-widget:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.course-sidebar-content .sidebar-widget .widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.course-sidebar-content .sidebar-widget .widget-title svg {
  flex-shrink: 0;
  color: #7e75ff;
}
.course-sidebar-content .course-info-widget .course-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item:hover {
  background: #f3f4f6;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-icon svg {
  width: 18px;
  height: 18px;
  color: #7e75ff;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content {
  flex: 1;
  min-width: 0;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content .info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.25rem;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content .info-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
  word-wrap: break-word;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content .info-value.difficulty-beginner {
  color: #10b981;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content .info-value.difficulty-intermediate {
  color: #ff6900;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content .info-value.difficulty-advanced {
  color: #e74c3c;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content .info-value.enrollment-open {
  color: #10b981;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content .info-value.enrollment-not-started {
  color: #ff6900;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content .info-value.enrollment-closed {
  color: #e74c3c;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content .info-value.capacity-available {
  color: #10b981;
}
.course-sidebar-content .course-info-widget .course-info-list .info-item .info-content .info-value.capacity-full {
  color: #e74c3c;
}
.course-sidebar-content .course-categories-widget .course-categories-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.course-sidebar-content .course-categories-widget .course-categories-list .category-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background: #f9fafb;
  border-radius: 6px;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.course-sidebar-content .course-categories-widget .course-categories-list .category-link svg {
  width: 14px;
  height: 14px;
  color: #7e75ff;
  transition: transform 0.2s ease;
}
.course-sidebar-content .course-categories-widget .course-categories-list .category-link:hover {
  background: #7e75ff;
  color: #ffffff;
  transform: translateX(4px);
}
.course-sidebar-content .course-categories-widget .course-categories-list .category-link:hover svg {
  color: #ffffff;
  transform: translateX(2px);
}
.course-sidebar-content .course-tags-widget .course-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.course-sidebar-content .course-tags-widget .course-tags-list .tag-link {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  color: #374151;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.course-sidebar-content .course-tags-widget .course-tags-list .tag-link:hover {
  background: #7e75ff;
  border-color: #7e75ff;
  color: #ffffff;
  transform: translateY(-2px);
}
.course-sidebar-content .share-widget .share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn span {
  flex: 1;
  text-align: left;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn.facebook:hover svg {
  color: #ffffff;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: #ffffff;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn.twitter:hover svg {
  color: #ffffff;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #ffffff;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn.linkedin:hover svg {
  color: #ffffff;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn.copy-link:hover {
  background: #7e75ff;
  border-color: #7e75ff;
  color: #ffffff;
}
.course-sidebar-content .share-widget .share-buttons .share-btn-group .share-btn.copy-link:hover svg {
  color: #ffffff;
}

.course-related {
  margin-top: 3rem;
  padding: 2rem;
}
.course-related .course-related-header {
  margin-bottom: 2rem;
}
.course-related .course-related-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0;
  color: #111827;
}
.course-related .course-related-title .title-text {
  display: inline-block;
}
@media (max-width: 640px) {
  .course-related .course-related-title {
    font-size: 1.5rem;
  }
}
.course-related .course-related-content .related-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .course-related .course-related-content .related-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .course-related .course-related-content .related-courses-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.course-related .course-related-content .related-courses-grid .related-course-item {
  width: 100%;
}
.course-related .course-related-content .course-related-footer {
  text-align: center;
  margin-top: 2rem;
}
.course-related .course-related-content .course-related-footer .btn-view-all-courses {
  display: inline-block;
}
@media (max-width: 640px) {
  .course-related {
    padding: 1.5rem;
    margin-top: 2rem;
  }
}

.splms-course-info-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.splms-course-info-modal.modal-visible {
  display: flex !important;
  opacity: 1;
}
.splms-course-info-modal .splms-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.splms-course-info-modal .splms-modal-content {
  position: relative;
  z-index: 10;
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}
@media (max-width: 640px) {
  .splms-course-info-modal .splms-modal-content {
    max-height: 90vh;
    margin: 0 0.5rem;
  }
}
.splms-course-info-modal .splms-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .splms-course-info-modal .splms-modal-header {
    padding: 1.25rem 1.5rem;
  }
}
.splms-course-info-modal .splms-modal-header h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.splms-course-info-modal .splms-modal-header h3 svg {
  color: #7e75ff;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .splms-course-info-modal .splms-modal-header h3 {
    font-size: 1.125rem;
  }
}
.splms-course-info-modal .splms-modal-header .splms-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #9ca3af;
  transition: all 0.2s ease;
  border-radius: 6px;
}
.splms-course-info-modal .splms-modal-header .splms-modal-close:hover {
  background: #f3f4f6;
  color: #111827;
}
.splms-course-info-modal .splms-modal-header .splms-modal-close svg {
  display: block;
}
.splms-course-info-modal .splms-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}
@media (max-width: 640px) {
  .splms-course-info-modal .splms-modal-body {
    padding: 1.25rem 1.5rem;
  }
}
.splms-course-info-modal .splms-modal-body::-webkit-scrollbar {
  width: 8px;
}
.splms-course-info-modal .splms-modal-body::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 10px;
}
.splms-course-info-modal .splms-modal-body::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 10px;
}
.splms-course-info-modal .splms-modal-body::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
.splms-course-info-modal .splms-modal-body .course-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item:hover {
  background: #f3f4f6;
  transform: translateX(4px);
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7e75ff;
  color: #ffffff;
  border-radius: 6px;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-icon svg {
  width: 18px;
  height: 18px;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-content {
  flex: 1;
  min-width: 0;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-content .info-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.25rem;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-content .info-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  word-wrap: break-word;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-content .info-value.capacity-full {
  color: #e74c3c;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-content .info-value.capacity-available {
  color: #10b981;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-content .info-value.enrollment-open {
  color: #10b981;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-content .info-value.enrollment-not-started {
  color: #ff6900;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-content .info-value.enrollment-closed {
  color: #e74c3c;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-content .info-value.certificate-yes {
  color: #10b981;
}
.splms-course-info-modal .splms-modal-body .course-info-list .info-item .info-content .info-value.access-lifetime {
  color: #7e75ff;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
body.modal-open {
  overflow: hidden;
}

.splms-hero__meta-list-item--btn .splms-course-info-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  font-size: inherit;
  transition: all 0.2s ease;
}
.splms-hero__meta-list-item--btn .splms-course-info-btn:hover {
  color: #e8e6ff;
  transform: translateY(-1px);
}
.splms-hero__meta-list-item--btn .splms-course-info-btn svg {
  flex-shrink: 0;
}

.splms-single-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
@media (max-width: 1024px) {
  .splms-single-section {
    padding: 0 1rem 2rem;
  }
}

.splms-section-single .splms-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 2rem;
  padding: 1rem 0;
}
.splms-section-single .splms-breadcrumb a {
  color: #475569;
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-section-single .splms-breadcrumb a:hover {
  color: #7e75ff;
}
.splms-section-single .splms-breadcrumb .separator {
  color: #9ca3af;
  margin: 0 0.25rem;
}
.splms-section-single .splms-breadcrumb .current {
  color: #111827;
  font-weight: 500;
}
@media (max-width: 640px) {
  .splms-section-single .splms-breadcrumb {
    font-size: 0.8125rem;
  }
}

.section-main-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .section-main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-main-content .section-sidebar {
    order: 1;
  }
  .section-main-content .section-content-area {
    order: 2;
  }
}

.section-content-area {
  min-width: 0;
}

@media (min-width: 1024px) {
  .section-sidebar {
    position: sticky;
    top: 2rem;
  }
}

.splms-section-hero {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .splms-section-hero {
    padding: 1.5rem;
    border-radius: 8px;
  }
}
.splms-section-hero .section-header .section-parent-course {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.75rem;
}
.splms-section-hero .section-header .section-parent-course .parent-label {
  font-weight: 500;
}
.splms-section-hero .section-header .section-parent-course a {
  color: #7e75ff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.splms-section-hero .section-header .section-parent-course a:hover {
  text-decoration: underline;
}
.splms-section-hero .section-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .splms-section-hero .section-header .section-title {
    font-size: 1.75rem;
  }
}
@media (max-width: 640px) {
  .splms-section-hero .section-header .section-title {
    font-size: 1.5rem;
  }
}
.splms-section-hero .splms-section-instructor {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .splms-section-hero .splms-section-instructor {
    flex-direction: column;
    text-align: center;
  }
}
.splms-section-hero .splms-section-instructor .instructor-avatar {
  flex-shrink: 0;
}
.splms-section-hero .splms-section-instructor .instructor-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.splms-section-hero .splms-section-instructor .instructor-info {
  flex: 1;
}
.splms-section-hero .splms-section-instructor .instructor-info .instructor-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}
.splms-section-hero .splms-section-instructor .instructor-info .instructor-name a {
  color: #111827;
  text-decoration: none;
}
.splms-section-hero .splms-section-instructor .instructor-info .instructor-name a:hover {
  color: #7e75ff;
}
.splms-section-hero .splms-section-instructor .instructor-info .instructor-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 640px) {
  .splms-section-hero .splms-section-instructor .instructor-info .instructor-rating {
    justify-content: center;
  }
}
.splms-section-hero .splms-section-instructor .instructor-info .instructor-rating .rating-stars {
  color: #f59e0b;
  font-size: 0.875rem;
}
.splms-section-hero .splms-section-instructor .instructor-info .instructor-rating .rating-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}
.splms-section-hero .splms-section-instructor .instructor-info .instructor-stats {
  font-size: 0.8125rem;
  color: #475569;
}
.splms-section-hero .splms-section-instructor .instructor-info .instructor-stats span {
  margin-right: 0.5rem;
}
.splms-section-hero .section-excerpt {
  margin-bottom: 1.5rem;
}
.splms-section-hero .section-excerpt p {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}
.splms-section-hero .section-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.05) 0%, rgba(126, 117, 255, 0.02) 100%);
  border: 1px solid rgba(126, 117, 255, 0.15);
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .splms-section-hero .section-stats {
    gap: 1rem;
    padding: 1rem;
  }
}
.splms-section-hero .section-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #374151;
  font-weight: 500;
}
.splms-section-hero .section-stats .stat-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #7e75ff;
}
@media (max-width: 640px) {
  .splms-section-hero .section-stats .stat-item {
    font-size: 0.875rem;
  }
  .splms-section-hero .section-stats .stat-item svg {
    width: 18px;
    height: 18px;
  }
}
.splms-section-hero .section-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}
.splms-section-hero .section-content p {
  margin: 0 0 1rem 0;
}
.splms-section-hero .section-content p:last-child {
  margin-bottom: 0;
}
.splms-section-hero .section-content ul,
.splms-section-hero .section-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.splms-section-hero .section-content ul li,
.splms-section-hero .section-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.splms-section-hero .section-content ul li:last-child,
.splms-section-hero .section-content ol li:last-child {
  margin-bottom: 0;
}

.splms-section-curriculum {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 640px) {
  .splms-section-curriculum {
    padding: 1.5rem;
    border-radius: 8px;
  }
}
.splms-section-curriculum .curriculum-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}
@media (max-width: 640px) {
  .splms-section-curriculum .curriculum-title {
    font-size: 1.25rem;
  }
}
.splms-section-curriculum .curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.splms-section-curriculum .curriculum-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}
.splms-section-curriculum .curriculum-item:hover {
  background: #ffffff;
  border-color: #7e75ff;
  box-shadow: 0 2px 6px rgba(126, 117, 255, 0.1);
  transform: translateX(4px);
}
.splms-section-curriculum .curriculum-item:hover .item-link {
  opacity: 1;
  transform: translateX(0);
}
.splms-section-curriculum .curriculum-item .item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
}
.splms-section-curriculum .curriculum-item .item-icon svg {
  width: 18px;
  height: 18px;
  color: #475569;
}
.splms-section-curriculum .curriculum-item.curriculum-item--lesson .item-icon svg {
  color: #7e75ff;
}
.splms-section-curriculum .curriculum-item.curriculum-item--quiz .item-icon svg {
  color: #10b981;
}
.splms-section-curriculum .curriculum-item .item-content {
  flex: 1;
  min-width: 0;
}
.splms-section-curriculum .curriculum-item .item-content .item-title {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}
.splms-section-curriculum .curriculum-item .item-content .item-type {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.splms-section-curriculum .curriculum-item .item-link {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7e75ff;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}
.splms-section-curriculum .curriculum-item .item-link svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}
.splms-section-curriculum .curriculum-item .item-link:hover {
  background: #6b5fff;
  transform: translateX(0) scale(1.1);
}
.splms-section-curriculum .curriculum-item .item-link:active {
  transform: translateX(0) scale(0.95);
}
.splms-section-curriculum .no-content-message {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #6b7280;
  font-size: 0.9375rem;
  font-style: italic;
}

.splms-section-purchase-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.splms-section-purchase-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .splms-section-purchase-card {
    padding: 1.5rem;
    border-radius: 8px;
  }
}
.splms-section-purchase-card .purchase-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem 0;
  text-align: center;
}
@media (max-width: 640px) {
  .splms-section-purchase-card .purchase-card-title {
    font-size: 1.125rem;
  }
}
.splms-section-purchase-card .enrolled-message,
.splms-section-purchase-card .owned-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  text-align: center;
}
.splms-section-purchase-card .enrolled-message svg,
.splms-section-purchase-card .owned-message svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.splms-section-purchase-card .enrolled-message p,
.splms-section-purchase-card .owned-message p {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
}
.splms-section-purchase-card .enrolled-message {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 2px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}
.splms-section-purchase-card .enrolled-message svg {
  color: #10b981;
}
.splms-section-purchase-card .owned-message {
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.1) 0%, rgba(126, 117, 255, 0.05) 100%);
  border: 2px solid rgba(126, 117, 255, 0.3);
  color: #7e75ff;
}
.splms-section-purchase-card .owned-message svg {
  color: #7e75ff;
}
.splms-section-purchase-card .section-price {
  text-align: center;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.splms-section-purchase-card .section-price .price-free {
  font-size: 2rem;
  font-weight: 700;
  color: #10b981;
}
.splms-section-purchase-card .section-price .price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7e75ff;
  line-height: 1;
}
@media (max-width: 640px) {
  .splms-section-purchase-card .section-price .price-current {
    font-size: 2rem;
  }
}
.splms-section-purchase-card .section-price .price-regular {
  display: block;
  font-size: 1.25rem;
  color: #6b7280;
  text-decoration: line-through;
  margin-top: 0.5rem;
}
.splms-section-purchase-card .splms-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.splms-section-purchase-card .splms-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.splms-section-purchase-card .splms-btn.splms-btn--primary {
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.3);
}
.splms-section-purchase-card .splms-btn.splms-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 117, 255, 0.4);
}
.splms-section-purchase-card .splms-btn.splms-btn--primary:active {
  transform: translateY(0);
}
.splms-section-purchase-card .splms-btn.splms-btn--block {
  width: 100%;
}
.splms-section-purchase-card .included-items {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.splms-section-purchase-card .included-items h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.splms-section-purchase-card .included-items ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.splms-section-purchase-card .included-items ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}
.splms-section-purchase-card .included-items ul li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #10b981;
}

@media (max-width: 1024px) {
  .splms-mobile-sticky-bar-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .splms-mobile-sticky-bar-section .mobile-price {
    flex: 0 0 auto;
  }
  .splms-mobile-sticky-bar-section .mobile-price .price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7e75ff;
    margin: 0;
  }
  .splms-mobile-sticky-bar-section .mobile-price .price-regular {
    font-size: 1rem;
    color: #6b7280;
    text-decoration: line-through;
    margin-left: 0.5rem;
  }
  .splms-mobile-sticky-bar-section .mobile-cta {
    flex: 1;
  }
  .splms-mobile-sticky-bar-section .mobile-cta .splms-btn {
    width: 100%;
  }
  .splms-single-section {
    padding-bottom: 5rem;
  }
}
@keyframes slideInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.splms-section-purchase-card {
  animation: slideInUp 0.5s ease-out;
}

.curriculum-list .curriculum-item {
  animation: fadeIn 0.5s ease-out;
  animation-fill-mode: both;
}
.curriculum-list .curriculum-item:nth-child(1) {
  animation-delay: 0.05s;
}
.curriculum-list .curriculum-item:nth-child(2) {
  animation-delay: 0.1s;
}
.curriculum-list .curriculum-item:nth-child(3) {
  animation-delay: 0.15s;
}
.curriculum-list .curriculum-item:nth-child(4) {
  animation-delay: 0.2s;
}
.curriculum-list .curriculum-item:nth-child(5) {
  animation-delay: 0.25s;
}
.curriculum-list .curriculum-item:nth-child(6) {
  animation-delay: 0.3s;
}
.curriculum-list .curriculum-item:nth-child(7) {
  animation-delay: 0.35s;
}
.curriculum-list .curriculum-item:nth-child(8) {
  animation-delay: 0.4s;
}
.curriculum-list .curriculum-item:nth-child(9) {
  animation-delay: 0.45s;
}
.curriculum-list .curriculum-item:nth-child(10) {
  animation-delay: 0.5s;
}

.splms-btn:focus-visible {
  outline: 3px solid #7e75ff;
  outline-offset: 2px;
}

.splms-section-sidebar-contents {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media (max-width: 640px) {
  .splms-section-sidebar-contents {
    padding: 1rem;
    border-radius: 8px;
  }
}
.splms-section-sidebar-contents .contents-header {
  margin-bottom: 1.5rem;
}
.splms-section-sidebar-contents .contents-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}
.splms-section-sidebar-contents .contents-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.splms-section-sidebar-contents .contents-list::-webkit-scrollbar {
  width: 6px;
}
.splms-section-sidebar-contents .contents-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.splms-section-sidebar-contents .contents-list::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  background: #ffffff;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item:hover {
  border-color: #7e75ff;
  background: rgba(126, 117, 255, 0.02);
  transform: translateX(2px);
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item.current-section {
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.08) 0%, rgba(126, 117, 255, 0.04) 100%);
  border-color: #7e75ff;
  border-width: 2px;
  padding: calc(0.875rem - 1px);
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item.current-section .section-icon svg {
  color: #7e75ff;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item.current-section .section-title {
  color: #7e75ff;
  font-weight: 600;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item .section-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item .section-icon svg {
  width: 20px;
  height: 20px;
  color: #475569;
  transition: color 0.2s;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item .section-info {
  flex: 1;
  min-width: 0;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item .section-info .section-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  margin-bottom: 0.25rem;
  line-height: 1.4;
  transition: color 0.2s;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item .section-info .section-title:hover {
  color: #7e75ff;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item .section-info .section-meta {
  font-size: 0.8125rem;
  color: #475569;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item .current-indicator {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item .current-indicator svg {
  width: 12px;
  height: 12px;
  color: #7e75ff;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item .section-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item .section-arrow svg {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  transition: all 0.2s;
}
.splms-section-sidebar-contents .contents-list.sections-list .section-item:hover .section-arrow svg {
  transform: translateX(2px);
  color: #7e75ff;
}
.splms-section-sidebar-contents .contents-list .content-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.splms-section-sidebar-contents .contents-list .content-item:hover {
  border-color: #7e75ff;
  background: rgba(126, 117, 255, 0.02);
}
.splms-section-sidebar-contents .contents-list .content-item.completed .item-status svg {
  color: #10b981;
}
.splms-section-sidebar-contents .contents-list .content-item.locked {
  opacity: 0.6;
  cursor: not-allowed;
}
.splms-section-sidebar-contents .contents-list .content-item.locked .item-status svg {
  color: #9ca3af;
}
.splms-section-sidebar-contents .contents-list .content-item .item-status {
  flex-shrink: 0;
}
.splms-section-sidebar-contents .contents-list .content-item .item-status svg {
  width: 20px;
  height: 20px;
  color: #6b7280;
}
.splms-section-sidebar-contents .contents-list .content-item .item-info {
  flex: 1;
  min-width: 0;
}
.splms-section-sidebar-contents .contents-list .content-item .item-info .item-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}
.splms-section-sidebar-contents .contents-list .content-item .item-info .item-title:hover {
  color: #7e75ff;
}
.splms-section-sidebar-contents .contents-list .content-item .item-info .item-meta {
  font-size: 0.8125rem;
  color: #475569;
}
.splms-section-sidebar-contents .contents-list .content-item .item-expand {
  flex-shrink: 0;
}
.splms-section-sidebar-contents .contents-list .content-item .item-expand svg {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  transition: transform 0.2s;
}
.splms-section-sidebar-contents .contents-list .content-item:hover .item-expand svg {
  transform: translateX(2px);
  color: #7e75ff;
}
.splms-section-sidebar-contents .no-contents-message {
  text-align: center;
  padding: 2rem 1rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-style: italic;
}

.splms-related-courses {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 2px solid #e5e7eb;
}
@media (max-width: 640px) {
  .splms-related-courses {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }
}
.splms-related-courses .related-courses-header {
  margin-bottom: 2rem;
}
.splms-related-courses .related-courses-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
@media (max-width: 640px) {
  .splms-related-courses .related-courses-header h2 {
    font-size: 1.5rem;
  }
}
.splms-related-courses .related-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .splms-related-courses .related-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .splms-related-courses .related-courses-grid {
    grid-template-columns: 1fr;
  }
}
.splms-related-courses .related-courses-grid .course-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.splms-related-courses .related-courses-grid .course-card:hover {
  border-color: #7e75ff;
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.15);
  transform: translateY(-4px);
}
.splms-related-courses .related-courses-grid .course-card .course-card-link {
  display: block;
  text-decoration: none;
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  background: #f3f4f6;
  overflow: hidden;
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-thumbnail:hover img {
  transform: scale(1.05);
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-thumbnail .thumbnail-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-thumbnail .thumbnail-placeholder svg {
  width: 48px;
  height: 48px;
  color: #9ca3af;
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-thumbnail .rating-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.375rem 0.75rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-thumbnail .rating-badge svg {
  width: 14px;
  height: 14px;
  color: #f59e0b;
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-thumbnail .rating-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-card-info {
  padding: 1rem;
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-card-info .course-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-card-info .course-meta {
  font-size: 0.875rem;
  color: #475569;
}
.splms-related-courses .related-courses-grid .course-card .course-card-link .course-card-info .course-meta .course-count {
  font-weight: 500;
}

@media print {
  .splms-breadcrumb,
  .splms-section-purchase-card,
  .splms-section-sidebar-contents,
  .splms-related-courses,
  .splms-mobile-sticky-bar-section {
    display: none !important;
  }
}
.splms-category-archive {
  padding: 2rem 0;
}
.splms-category-archive .splms-category-header {
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .splms-category-archive .splms-category-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.splms-category-archive .splms-category-header .category-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.splms-category-archive .splms-category-header .category-title .category-icon {
  color: #e8e6ff;
}
@media (max-width: 768px) {
  .splms-category-archive .splms-category-header .category-title {
    justify-content: center;
  }
}
.splms-category-archive .splms-category-header .category-course-count {
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
  opacity: 0.9;
}
.splms-category-archive .splms-category-header .category-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.splms-category-archive .splms-category-header .category-controls {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .splms-category-archive .splms-category-header .category-controls {
    justify-content: center;
  }
}
.splms-category-archive .splms-category-header .category-header-image {
  width: 200px;
  flex-shrink: 0;
}
.splms-category-archive .splms-category-header .category-header-image .category-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .splms-category-archive .splms-category-header .category-header-image {
    margin: 0 auto;
  }
}
.splms-category-archive .related-categories {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}
.splms-category-archive .related-categories .related-categories-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 2rem 0;
}
.splms-category-archive .related-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.splms-category-archive .related-categories .category-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.splms-category-archive .related-categories .category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-color: #7e75ff;
}
.splms-category-archive .related-categories .category-card .category-card-link {
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
}
.splms-category-archive .related-categories .category-card .category-card-link .category-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.5rem 0;
}
.splms-category-archive .related-categories .category-card .category-card-link .category-card-count {
  font-size: 0.875rem;
  color: #7e75ff;
  font-weight: 500;
  margin: 0 0 0.75rem 0;
}
.splms-category-archive .related-categories .category-card .category-card-link .category-card-description {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}
.splms-category-archive .subcategories {
  margin-bottom: 2rem;
}
.splms-category-archive .subcategories .subcategories-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 1rem 0;
}
.splms-category-archive .subcategories .subcategories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.splms-category-archive .subcategories .subcategories-list .subcategory-link {
  padding: 0.5rem 1rem;
  background-color: #f3f4f6;
  border-radius: 8px;
  color: #374151;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-category-archive .subcategories .subcategories-list .subcategory-link:hover {
  background-color: #7e75ff;
  color: #ffffff;
}
.splms-category-archive .subcategories .subcategories-list .subcategory-link.active {
  background-color: #7e75ff;
  color: #ffffff;
}
.splms-category-archive .empty-category {
  text-align: center;
  padding: 3rem 2rem;
  background: #f9fafb;
  border-radius: 12px;
  margin: 2rem 0;
}
.splms-category-archive .empty-category .empty-icon {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}
.splms-category-archive .empty-category .empty-icon svg {
  width: 4rem;
  height: 4rem;
}
.splms-category-archive .empty-category .empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 1rem 0;
}
.splms-category-archive .empty-category .empty-description {
  color: #475569;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.splms-category-archive .empty-category .empty-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.splms-no-courses {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-left: auto;
  margin-right: auto;
}
.splms-no-courses .no-courses-illustration {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.splms-no-courses .no-courses-illustration svg {
  width: 120px;
  height: 120px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}
.splms-no-courses .no-courses-illustration svg:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.splms-no-courses .no-courses-content {
  margin-bottom: 2.5rem;
}
.splms-no-courses .no-courses-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .splms-no-courses .no-courses-title {
    font-size: 1.5rem;
  }
}
.splms-no-courses .no-courses-message {
  color: #475569;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 600px;
}
.splms-no-courses .no-courses-message strong {
  color: #111827;
  font-weight: 600;
}
.splms-no-courses .no-courses-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.splms-no-courses .no-courses-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.splms-no-courses .no-courses-actions .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.splms-no-courses .no-courses-actions .btn span {
  display: inline-block;
}
.splms-no-courses .no-courses-actions .btn.btn-primary {
  background: #7e75ff;
  color: #ffffff;
  border: 1px solid #7e75ff;
}
.splms-no-courses .no-courses-actions .btn.btn-primary:hover {
  background: #6b5fff;
  border-color: #6b5fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.25);
}
.splms-no-courses .no-courses-actions .btn.btn-secondary {
  background: #ffffff;
  color: #374151;
  border: 1px solid #d1d5db;
}
.splms-no-courses .no-courses-actions .btn.btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.splms-no-courses .browse-categories {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}
.splms-no-courses .browse-categories .browse-categories-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.01em;
}
.splms-no-courses .browse-categories .category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.splms-no-courses .browse-categories .category-chips .category-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #ffffff;
  color: #374151;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.splms-no-courses .browse-categories .category-chips .category-chip svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.splms-no-courses .browse-categories .category-chips .category-chip .category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 0.375rem;
  background-color: #f3f4f6;
  color: #475569;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.25rem;
  transition: all 0.3s ease;
}
.splms-no-courses .browse-categories .category-chips .category-chip:hover {
  background-color: #7e75ff;
  color: #ffffff;
  border-color: #7e75ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.25);
}
.splms-no-courses .browse-categories .category-chips .category-chip:hover svg {
  color: #ffffff;
}
.splms-no-courses .browse-categories .category-chips .category-chip:hover .category-count {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.splms-no-courses .browse-categories .category-chips .category-chip:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .splms-no-courses {
    padding: 3rem 1.5rem;
  }
  .splms-no-courses .no-courses-illustration svg {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 640px) {
  .splms-no-courses {
    padding: 2.5rem 1.25rem;
    margin: 1.5rem 0;
  }
  .splms-no-courses .no-courses-illustration {
    margin-bottom: 1.5rem;
  }
  .splms-no-courses .no-courses-illustration svg {
    width: 80px;
    height: 80px;
  }
  .splms-no-courses .no-courses-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
  .splms-no-courses .no-courses-message {
    font-size: 1rem;
  }
  .splms-no-courses .no-courses-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 2.5rem;
  }
  .splms-no-courses .no-courses-actions .btn {
    width: 100%;
    min-width: auto;
    padding: 0.875rem 1.5rem;
  }
  .splms-no-courses .browse-categories {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }
  .splms-no-courses .browse-categories .browse-categories-title {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  .splms-no-courses .browse-categories .category-chips {
    gap: 0.625rem;
  }
  .splms-no-courses .browse-categories .category-chips .category-chip {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
  .splms-no-courses .browse-categories .category-chips .category-chip svg {
    width: 14px;
    height: 14px;
  }
  .splms-no-courses .browse-categories .category-chips .category-chip .category-count {
    min-width: 20px;
    height: 20px;
    font-size: 0.6875rem;
  }
}

/**
 * Certificate Display Frontend Styles
 * Styles for certificate display components on frontend
 */
/* Certificate Completion Notice */
.splms-certificate-completion-notice {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.splms-certificate-completion-notice .certificate-icon {
  font-size: 48px;
  margin-bottom: 15px;
}
.splms-certificate-completion-notice h3 {
  color: white;
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: 600;
}
.splms-certificate-completion-notice p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 25px 0;
  font-size: 16px;
}
.splms-certificate-completion-notice .certificate-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.splms-certificate-completion-notice .certificate-actions .btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.splms-certificate-completion-notice .certificate-actions .btn.btn-primary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.splms-certificate-completion-notice .certificate-actions .btn.btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
}
.splms-certificate-completion-notice .certificate-actions .btn.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.splms-certificate-completion-notice .certificate-actions .btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}

/* Course Certificate Section */
.splms-course-certificate-section {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
}
.splms-course-certificate-section .certificate-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px 0;
  color: #333;
  font-size: 20px;
  font-weight: 600;
}
.splms-course-certificate-section .certificate-section-title .dashicons {
  color: #2c5aa0;
}
.splms-course-certificate-section .certificate-available {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .splms-course-certificate-section .certificate-available {
    flex-direction: column;
    gap: 15px;
  }
}
.splms-course-certificate-section .certificate-available .certificate-info {
  flex: 1;
}
.splms-course-certificate-section .certificate-available .certificate-info .certificate-status .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.splms-course-certificate-section .certificate-available .certificate-info .certificate-status .status-badge.status-completed {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.splms-course-certificate-section .certificate-available .certificate-info .certificate-status .status-badge.status-processing {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
.splms-course-certificate-section .certificate-available .certificate-info .certificate-status .status-badge.status-pending {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.splms-course-certificate-section .certificate-available .certificate-info .certificate-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .splms-course-certificate-section .certificate-available .certificate-info .certificate-details {
    grid-template-columns: 1fr;
  }
}
.splms-course-certificate-section .certificate-available .certificate-info .certificate-details .detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.splms-course-certificate-section .certificate-available .certificate-info .certificate-details .detail-item strong {
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.splms-course-certificate-section .certificate-available .certificate-info .certificate-details .detail-item span {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
.splms-course-certificate-section .certificate-available .certificate-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .splms-course-certificate-section .certificate-available .certificate-actions {
    justify-content: center;
    flex-direction: column;
  }
}
.splms-course-certificate-section .certificate-available .certificate-actions .btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.splms-course-certificate-section .certificate-available .certificate-actions .btn.btn-primary {
  background: #2c5aa0;
  color: white;
}
.splms-course-certificate-section .certificate-available .certificate-actions .btn.btn-primary:hover {
  background: #1a3d73;
  color: white;
  text-decoration: none;
}
.splms-course-certificate-section .certificate-available .certificate-actions .btn.btn-secondary {
  background: #6c757d;
  color: white;
}
.splms-course-certificate-section .certificate-available .certificate-actions .btn.btn-secondary:hover {
  background: #545b62;
  color: white;
  text-decoration: none;
}
.splms-course-certificate-section .certificate-available .certificate-actions .btn.btn-outline {
  background: transparent;
  color: #2c5aa0;
  border: 2px solid #2c5aa0;
}
.splms-course-certificate-section .certificate-available .certificate-actions .btn.btn-outline:hover {
  background: #2c5aa0;
  color: white;
  text-decoration: none;
}
.splms-course-certificate-section .certificate-available .certificate-actions .btn.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}
@media (max-width: 480px) {
  .splms-course-certificate-section .certificate-available .certificate-actions .btn {
    justify-content: center;
    text-align: center;
  }
}
.splms-course-certificate-section .certificate-requirements {
  text-align: center;
  padding: 20px;
}
.splms-course-certificate-section .certificate-requirements p {
  color: #666;
  margin: 15px 0;
}
.splms-course-certificate-section .certificate-requirements .requirements-list {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 20px;
  margin: 20px 0;
  text-align: left;
}
.splms-course-certificate-section .certificate-requirements .requirements-list h4 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 16px;
}
.splms-course-certificate-section .certificate-requirements .requirements-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.splms-course-certificate-section .certificate-requirements .requirements-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #666;
}
.splms-course-certificate-section .certificate-requirements .requirements-list ul li .dashicons {
  color: #28a745;
}
.splms-course-certificate-section .certificate-generating {
  text-align: center;
  padding: 20px;
}
.splms-course-certificate-section .certificate-generating p {
  color: #666;
  margin: 15px 0;
}
.splms-course-certificate-section .certificate-generating .status-badge.status-processing {
  animation: pulse 2s infinite;
}

/* User Certificates Grid */
.splms-user-certificates {
  display: grid;
  gap: 20px;
  margin: 20px 0;
}
.splms-user-certificates.layout-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media (max-width: 768px) {
  .splms-user-certificates.layout-grid {
    grid-template-columns: 1fr;
  }
}
.splms-user-certificates.layout-list {
  grid-template-columns: 1fr;
}
.splms-user-certificates.layout-simple .certificate-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
}
.splms-user-certificates .certificate-card {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.splms-user-certificates .certificate-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.splms-user-certificates .certificate-card .certificate-preview {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.splms-user-certificates .certificate-card .certificate-preview .certificate-icon {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.8);
}
.splms-user-certificates .certificate-card .certificate-preview .certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.splms-user-certificates .certificate-card .certificate-preview .certificate-overlay .view-certificate {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.splms-user-certificates .certificate-card .certificate-preview .certificate-overlay .view-certificate:hover {
  background: white;
  color: #333;
  text-decoration: none;
}
.splms-user-certificates .certificate-card .certificate-preview:hover .certificate-overlay {
  opacity: 1;
}
.splms-user-certificates .certificate-card .certificate-info {
  padding: 20px;
}
.splms-user-certificates .certificate-card .certificate-info .certificate-title {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.splms-user-certificates .certificate-card .certificate-info .certificate-meta {
  margin-bottom: 20px;
}
.splms-user-certificates .certificate-card .certificate-info .certificate-meta .meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.splms-user-certificates .certificate-card .certificate-info .certificate-meta .meta-item:last-child {
  border-bottom: none;
}
.splms-user-certificates .certificate-card .certificate-info .certificate-meta .meta-item strong {
  color: #666;
  font-weight: 500;
}
.splms-user-certificates .certificate-card .certificate-info .certificate-meta .meta-item span {
  color: #333;
  font-weight: 400;
}
.splms-user-certificates .certificate-card .certificate-info .certificate-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Animations */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/* Certificate Sidebar Widget */
.certificate-widget .certificate-content .certificate-available .certificate-status {
  margin-bottom: 15px;
}
.certificate-widget .certificate-content .certificate-available .certificate-status .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}
.certificate-widget .certificate-content .certificate-available .certificate-status .status-badge.status-completed {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.certificate-widget .certificate-content .certificate-available .certificate-status .status-badge.status-processing {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
  animation: pulse 2s infinite;
}
.certificate-widget .certificate-content .certificate-available .certificate-description {
  color: #666;
  font-size: 14px;
  margin: 0 0 20px 0;
  line-height: 1.5;
}
.certificate-widget .certificate-content .certificate-available .certificate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.certificate-widget .certificate-content .certificate-available .certificate-actions .btn {
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-align: center;
}
.certificate-widget .certificate-content .certificate-available .certificate-actions .btn.btn-primary {
  background: #2c5aa0;
  color: white;
}
.certificate-widget .certificate-content .certificate-available .certificate-actions .btn.btn-primary:hover {
  background: #1a3d73;
  color: white;
  text-decoration: none;
}
.certificate-widget .certificate-content .certificate-available .certificate-actions .btn.btn-secondary {
  background: #6c757d;
  color: white;
}
.certificate-widget .certificate-content .certificate-available .certificate-actions .btn.btn-secondary:hover {
  background: #545b62;
  color: white;
  text-decoration: none;
}
.certificate-widget .certificate-content .certificate-available .certificate-actions .btn svg {
  flex-shrink: 0;
}
.certificate-widget .certificate-content .certificate-generating .certificate-status {
  margin-bottom: 15px;
}
.certificate-widget .certificate-content .certificate-generating .certificate-status .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}
.certificate-widget .certificate-content .certificate-generating .certificate-status .status-badge.status-processing {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
  animation: pulse 2s infinite;
}
.certificate-widget .certificate-content .certificate-generating .certificate-description {
  color: #666;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 480px) {
  .splms-certificate-completion-notice {
    padding: 20px;
  }
  .splms-certificate-completion-notice .certificate-actions {
    flex-direction: column;
  }
  .splms-course-certificate-section .certificate-actions {
    flex-direction: column;
  }
  .certificate-widget .certificate-content .certificate-available .certificate-actions .btn {
    width: 100%;
  }
}
/**
 * Checkout Page Styles
 * Matching the design pattern from course sidebar and lesson pages.
 *
 * @package SkillPulse_LMS
 * @subpackage Templates
 * @since [SPLMS_VERSION]
 */
.splms-checkout-wrapper {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.splms-checkout-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}
.splms-checkout-container:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08), 0 16px 32px rgba(0, 0, 0, 0.12);
}

/* Header Section */
.splms-checkout-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.05) 0%, rgba(126, 117, 255, 0.02) 100%);
  position: relative;
}
.splms-checkout-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #7e75ff 0%, transparent 100%);
  opacity: 0.3;
}
.splms-checkout-header .splms-checkout-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.splms-checkout-header .splms-checkout-subtitle {
  font-size: 0.9375rem;
  color: #475569;
  margin: 0;
  font-weight: 500;
}

/* Course Details */
.splms-course-details {
  padding: 2rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  background: rgba(249, 250, 251, 0.3);
}
.splms-course-details .splms-course-info .splms-course-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}
.splms-course-details .splms-course-info .splms-course-title a {
  color: #111827;
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-course-details .splms-course-info .splms-course-title a:hover {
  color: #7e75ff;
}
.splms-course-details .splms-course-info .splms-course-excerpt {
  margin: 0;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.splms-course-details .splms-course-price .splms-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
}
.splms-course-details .splms-course-price .splms-original-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 1rem;
  font-weight: 600;
}
.splms-course-details .splms-course-price .splms-sale-price {
  font-size: 2rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}
.splms-course-details .splms-course-price .splms-discount-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, #10b981 0%, rgb(11.9402985075, 138.0597014925, 96.2686567164) 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}
.splms-course-details .splms-course-price .splms-price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #7e75ff;
  line-height: 1;
}

/* Step Headers */
.splms-step-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
  position: relative;
}
.splms-step-header .splms-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9375rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(126, 117, 255, 0.4);
  position: relative;
}
.splms-step-header .splms-step-number::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  border-radius: 50% 50% 0 0;
}
.splms-step-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
}
.splms-step-header.completed .splms-step-number {
  background: linear-gradient(135deg, #10b981 0%, rgb(11.9402985075, 138.0597014925, 96.2686567164) 100%);
  cursor: pointer;
  transition: all all 0.2s ease;
}
.splms-step-header.completed .splms-step-number:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
.splms-step-header.completed h3 {
  color: #374151;
}
.splms-step-header.active .splms-step-number {
  animation: pulse 2s infinite;
}

/* Pricing Options */
.splms-pricing-options {
  padding: 2rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}
.splms-pricing-options .splms-pricing-option {
  margin-bottom: 1rem;
}
.splms-pricing-options .splms-pricing-option:last-child {
  margin-bottom: 0;
}
.splms-pricing-options .splms-pricing-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all all 0.2s ease;
  background: #ffffff;
  position: relative;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #7e75ff;
  opacity: 0;
  border-radius: 8px 0 0 8px;
  transition: opacity all 0.2s ease;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-label:hover {
  border-color: rgba(126, 117, 255, 0.5);
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.04) 0%, rgba(126, 117, 255, 0.02) 100%);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(126, 117, 255, 0.08);
}
.splms-pricing-options .splms-pricing-option .splms-pricing-label:hover::before {
  opacity: 0.6;
}
.splms-pricing-options .splms-pricing-option input[type=radio]:checked + .splms-pricing-label {
  border-color: #7e75ff;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.08) 0%, rgba(126, 117, 255, 0.04) 100%);
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.2);
  transform: translateX(4px);
}
.splms-pricing-options .splms-pricing-option input[type=radio]:checked + .splms-pricing-label::before {
  opacity: 1;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-info {
  flex: 1;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-info .splms-pricing-title {
  font-weight: 700;
  color: #111827;
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-info .splms-pricing-title .splms-badge {
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-info .splms-pricing-description {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.5;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #7e75ff;
  text-align: right;
  line-height: 1;
  flex-shrink: 0;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-amount .splms-price-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-amount .splms-original-price-small {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 1rem;
  font-weight: 600;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-amount .splms-sale-price-large {
  font-size: 1.5rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}
.splms-pricing-options .splms-pricing-option .splms-pricing-amount.splms-pricing-amount-flexible {
  font-size: 1.125rem;
  font-weight: 700;
  color: #475569;
  padding: 0.5rem 1rem;
  background: rgba(243, 244, 246, 0.6);
  border-radius: 4px;
  border: 1px solid #e5e7eb;
}
.splms-pricing-options .splms-sections-header {
  margin-bottom: 1.25rem;
}
.splms-pricing-options .splms-sections-header h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}
.splms-pricing-options .splms-sections-header .splms-sections-description {
  margin: 0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
}
.splms-pricing-options .splms-sections-list {
  margin-top: 1.25rem;
  max-height: 450px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.splms-pricing-options .splms-sections-list::-webkit-scrollbar {
  width: 6px;
}
.splms-pricing-options .splms-sections-list::-webkit-scrollbar-track {
  background: rgba(229, 231, 235, 0.3);
  border-radius: 9999px;
}
.splms-pricing-options .splms-sections-list::-webkit-scrollbar-thumb {
  background: rgba(126, 117, 255, 0.3);
  border-radius: 9999px;
}
.splms-pricing-options .splms-sections-list::-webkit-scrollbar-thumb:hover {
  background: rgba(126, 117, 255, 0.5);
}
.splms-pricing-options .splms-section-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border: 1.5px solid transparent;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: all all 0.2s ease;
  background: rgba(249, 250, 251, 0.4);
  position: relative;
  cursor: pointer;
}
.splms-pricing-options .splms-section-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #7e75ff;
  opacity: 0;
  transition: opacity all 0.2s ease;
}
.splms-pricing-options .splms-section-item:hover:not(.disabled) {
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.06) 0%, rgba(126, 117, 255, 0.03) 100%);
  border-color: rgba(126, 117, 255, 0.25);
  transform: translateX(4px);
}
.splms-pricing-options .splms-section-item:hover:not(.disabled)::after {
  opacity: 0.5;
}
.splms-pricing-options .splms-section-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: linear-gradient(135deg, rgba(243, 244, 246, 0.6) 0%, rgba(249, 250, 251, 0.4) 100%);
}
.splms-pricing-options .splms-section-item.splms-requested-section {
  border-color: #7e75ff;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.08) 0%, rgba(126, 117, 255, 0.04) 100%);
  box-shadow: 0 2px 8px rgba(126, 117, 255, 0.12);
}
.splms-pricing-options .splms-section-item.splms-requested-section::after {
  opacity: 1;
}
.splms-pricing-options .splms-section-item input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.splms-pricing-options .splms-section-item input[type=checkbox]:disabled {
  cursor: not-allowed;
}
.splms-pricing-options .splms-section-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  margin: 0;
}
.splms-pricing-options .splms-section-item .splms-section-info {
  flex: 1;
}
.splms-pricing-options .splms-section-item .splms-section-info .splms-section-title {
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.375rem;
  line-height: 1.5;
}
.splms-pricing-options .splms-section-item .splms-section-info .splms-section-owned {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: linear-gradient(135deg, #10b981 0%, rgb(11.9402985075, 138.0597014925, 96.2686567164) 100%);
  color: #ffffff;
  font-size: 0.6875rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.splms-pricing-options .splms-section-item .splms-section-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.splms-pricing-options .splms-section-item .splms-section-price .splms-original-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 0.8125rem;
  font-weight: 600;
}
.splms-pricing-options .splms-section-item .splms-section-price .splms-sale-price,
.splms-pricing-options .splms-section-item .splms-section-price .splms-section-price-amount {
  font-weight: 800;
  color: #7e75ff;
  font-size: 1.0625rem;
  line-height: 1;
}

/* Billing Information */
.splms-billing-info {
  padding: 2rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}
.splms-billing-info .splms-billing-fields {
  margin-top: 1.25rem;
}
.splms-billing-info .splms-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .splms-billing-info .splms-field-row {
    grid-template-columns: 1fr;
  }
}
.splms-billing-info .splms-field {
  margin-bottom: 1rem;
}
.splms-billing-info .splms-field label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}
.splms-billing-info .splms-field label .required {
  color: #e74c3c;
  margin-left: 0.125rem;
  font-weight: 400;
}
.splms-billing-info .splms-field label .optional {
  color: #6b7280;
  font-weight: 400;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}
.splms-billing-info .splms-field input[type=text],
.splms-billing-info .splms-field input[type=email],
.splms-billing-info .splms-field select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all all 0.2s ease;
  font-family: inherit;
  color: #111827;
  background: #ffffff;
}
.splms-billing-info .splms-field input[type=text]:hover,
.splms-billing-info .splms-field input[type=email]:hover,
.splms-billing-info .splms-field select:hover {
  border-color: #d1d5db;
}
.splms-billing-info .splms-field input[type=text]:focus,
.splms-billing-info .splms-field input[type=email]:focus,
.splms-billing-info .splms-field select:focus {
  outline: none;
  border-color: #7e75ff;
  box-shadow: 0 0 0 3px rgba(126, 117, 255, 0.08);
}
.splms-billing-info .splms-field input[type=text]::placeholder,
.splms-billing-info .splms-field input[type=email]::placeholder,
.splms-billing-info .splms-field select::placeholder {
  color: #9ca3af;
  font-weight: 400;
}
.splms-billing-info .splms-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 10px;
  padding-right: 2.5rem;
  appearance: none;
}

/* Payment Form */
.splms-payment-form {
  padding: 2rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

/* Payment Methods */
.splms-payment-methods {
  margin-bottom: 2rem;
}
.splms-payment-methods h3 {
  margin: 0 0 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}
.splms-payment-methods .splms-payment-option {
  margin-bottom: 0.75rem;
}
.splms-payment-methods .splms-payment-option:last-child {
  margin-bottom: 0;
}
.splms-payment-methods .splms-payment-option input[type=radio] {
  display: none;
}
.splms-payment-methods .splms-payment-option .splms-payment-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all all 0.2s ease;
  background: #ffffff;
  position: relative;
}
.splms-payment-methods .splms-payment-option .splms-payment-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #7e75ff;
  opacity: 0;
  border-radius: 8px 0 0 8px;
  transition: opacity all 0.2s ease;
}
.splms-payment-methods .splms-payment-option .splms-payment-label:hover {
  border-color: rgba(126, 117, 255, 0.4);
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.03) 0%, rgba(126, 117, 255, 0.01) 100%);
  transform: translateX(4px);
}
.splms-payment-methods .splms-payment-option .splms-payment-label:hover::before {
  opacity: 0.5;
}
.splms-payment-methods .splms-payment-option input[type=radio]:checked + .splms-payment-label {
  border-color: #7e75ff;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.06) 0%, rgba(126, 117, 255, 0.03) 100%);
  box-shadow: 0 2px 8px rgba(126, 117, 255, 0.15);
}
.splms-payment-methods .splms-payment-option input[type=radio]:checked + .splms-payment-label::before {
  opacity: 1;
}
.splms-payment-methods .splms-payment-option .splms-payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 32px;
  flex-shrink: 0;
}
.splms-payment-methods .splms-payment-option .splms-payment-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.splms-payment-methods .splms-payment-option .splms-payment-icon svg {
  width: 100%;
  height: 100%;
}
.splms-payment-methods .splms-payment-option .splms-payment-info {
  flex: 1;
  min-width: 0;
}
.splms-payment-methods .splms-payment-option .splms-payment-info .splms-payment-name {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #111827;
  margin-bottom: 0.125rem;
  line-height: 1.4;
}
.splms-payment-methods .splms-payment-option .splms-payment-info .splms-payment-description {
  display: block;
  color: #475569;
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Order Summary */
.splms-order-summary {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(126, 117, 255, 0.04) 0%, rgba(126, 117, 255, 0.02) 100%);
  border-radius: 8px;
  border: 1px solid rgba(126, 117, 255, 0.15);
}
.splms-order-summary h3 {
  margin: 0 0 1.25rem 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}
.splms-order-summary .splms-summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.625rem;
  color: #374151;
  font-size: 0.9375rem;
  font-weight: 500;
}
.splms-order-summary .splms-summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(126, 117, 255, 0.2);
  font-weight: 800;
  font-size: 1.125rem;
  color: #111827;
}
.splms-order-summary .splms-summary-total .splms-total-value {
  color: #7e75ff;
  font-size: 1.5rem;
}

/* Payment States */
.splms-payment-state {
  padding: 3rem 2rem;
  text-align: center;
  animation: fadeIn 0.4s ease-out;
}
.splms-payment-state.splms-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
  border-left: 4px solid #10b981;
}
.splms-payment-state.splms-error {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(231, 76, 60, 0.04) 100%);
  border-left: 4px solid #e74c3c;
}
.splms-payment-state .splms-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(229, 231, 235, 0.5);
  border-top: 4px solid #7e75ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}
.splms-payment-state .splms-processing-message {
  font-size: 1.0625rem;
  color: #374151;
  margin: 0;
  font-weight: 600;
}
.splms-payment-state .splms-success-icon,
.splms-payment-state .splms-error-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.splms-payment-state .splms-success-icon {
  color: #10b981;
}
.splms-payment-state .splms-error-icon {
  color: #e74c3c;
}
.splms-payment-state h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
}
.splms-payment-state p {
  margin: 0 0 1.5rem 0;
  color: #475569;
  font-size: 0.9375rem;
}
.splms-payment-state .splms-try-again-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all all 0.2s ease;
  box-shadow: 0 2px 6px rgba(126, 117, 255, 0.3);
}
.splms-payment-state .splms-try-again-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(126, 117, 255, 0.4);
}
.splms-payment-state .splms-try-again-btn:active {
  transform: translateY(0);
}

/* Step Navigation System */
.splms-checkout-step {
  animation: fadeIn 0.4s ease-out;
}
.splms-checkout-step[data-step] {
  padding: 0;
  border-bottom: none;
}
.splms-checkout-step[data-step] .splms-payment-methods .splms-step-header .splms-step-number,
.splms-checkout-step[data-step] .splms-order-summary .splms-step-header .splms-step-number {
  display: none;
}

.splms-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(249, 250, 251, 0.5);
  border-top: 1px solid rgba(229, 231, 235, 0.6);
}
.splms-step-actions .splms-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all all 0.2s ease;
  text-decoration: none;
}
.splms-step-actions .splms-btn.splms-btn-primary {
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(126, 117, 255, 0.3);
}
.splms-step-actions .splms-btn.splms-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(126, 117, 255, 0.4);
}
.splms-step-actions .splms-btn.splms-btn-primary:active {
  transform: translateY(0);
}
.splms-step-actions .splms-btn.splms-btn-secondary {
  background: #ffffff;
  color: #374151;
  border: 2px solid #e5e7eb;
}
.splms-step-actions .splms-btn.splms-btn-secondary:hover {
  background: rgba(249, 250, 251, 0.5);
  border-color: #d1d5db;
}
.splms-step-actions .splms-btn .splms-btn-arrow {
  font-size: 1.125rem;
  transition: transform all 0.2s ease;
}
.splms-step-actions .splms-btn:hover .splms-btn-arrow {
  transform: translateX(3px);
}
.splms-step-actions .splms-btn.splms-back-btn:hover .splms-btn-arrow {
  transform: translateX(-3px);
}
.splms-step-actions:has(.splms-btn:only-child) {
  justify-content: flex-end;
}

/* Payment Container */
#splms-payment-button-container {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
#splms-payment-button-container #splms-stripe-submit {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.875rem;
  background: linear-gradient(135deg, #7e75ff 0%, #6b5fff 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all all 0.2s ease;
  box-shadow: 0 2px 6px rgba(126, 117, 255, 0.3);
}
#splms-payment-button-container #splms-stripe-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(126, 117, 255, 0.4);
}
#splms-payment-button-container #splms-stripe-submit:active {
  transform: translateY(0);
}
#splms-payment-button-container #splms-stripe-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Utility Classes */
.splms-field-error {
  border-color: #e74c3c !important;
  background: rgba(231, 76, 60, 0.05);
}

.splms-error-message {
  color: #e74c3c;
  font-size: 0.8125rem;
  margin-top: 0.375rem;
  font-weight: 600;
}

.splms-field-success {
  border-color: #10b981 !important;
  background: rgba(16, 185, 129, 0.05);
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(126, 117, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(126, 117, 255, 0);
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .splms-checkout-wrapper {
    margin: 1.5rem auto;
  }
  .splms-checkout-container {
    border-radius: 0;
  }
  .splms-checkout-header {
    padding: 1.5rem;
  }
  .splms-checkout-header .splms-checkout-title {
    font-size: 1.25rem;
  }
  .splms-course-details,
  .splms-pricing-options,
  .splms-billing-info,
  .splms-payment-form {
    padding: 1.5rem;
  }
  .splms-step-actions {
    padding: 1.25rem 1.5rem;
    flex-direction: column-reverse;
  }
  .splms-step-actions .splms-btn {
    width: 100%;
    justify-content: center;
  }
  .splms-pricing-option .splms-pricing-label {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }
  .splms-pricing-option .splms-pricing-info {
    text-align: center;
  }
  .splms-pricing-option .splms-pricing-amount {
    text-align: center;
    align-self: center;
  }
  .splms-pricing-option .splms-pricing-amount.splms-pricing-amount-flexible {
    align-self: center;
  }
  .splms-pricing-option .splms-pricing-amount .splms-price-details {
    align-items: center;
  }
  .splms-section-item label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .splms-section-item .splms-section-price {
    text-align: left;
  }
}
/* Print Styles */
@media print {
  .splms-checkout-container {
    box-shadow: none;
    border: 1px solid #d1d5db;
  }
  .splms-checkout-container .splms-payment-form,
  .splms-checkout-container #splms-payment-button-container,
  .splms-checkout-container .splms-step-actions {
    display: none;
  }
}
/* Course Curriculum Styles */
/* Notification System */
@media screen {
  .splms-notification {
    position: fixed !important;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    padding: 15px 20px;
    border-radius: 6px;
    color: white !important;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    opacity: 0;
    transform: translateX(calc(100% + 2rem));
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .splms-notification.is-visible {
    opacity: 1 !important;
    transform: translateX(0);
    pointer-events: auto;
  }
  .splms-notification.splms-notification-success {
    background-color: #10b981 !important;
    color: white !important;
  }
  .splms-notification.splms-notification-error {
    background-color: #ef4444 !important;
    color: white !important;
  }
  .splms-notification.splms-notification-info {
    background-color: #3b82f6 !important;
    color: white !important;
  }
  .splms-notification.splms-notification-warning {
    background-color: #f59e0b !important;
    color: white !important;
  }
  .splms-notification--success {
    background-color: #10b981 !important;
    color: white !important;
  }
  .splms-notification--error {
    background-color: #ef4444 !important;
    color: white !important;
  }
  .splms-notification--info {
    background-color: #3b82f6 !important;
    color: white !important;
  }
  .splms-notification--warning {
    background-color: #f59e0b !important;
    color: white !important;
  }
  .splms-notification.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3) !important;
  }
}
@media screen {
  @keyframes fallDown {
    0% {
      transform: translateY(-50px) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }
  .course-completion-actions {
    animation: slideUpFadeIn 0.6s ease-out forwards;
  }
  .course-completion-actions .splms-btn {
    transition: all 0.2s ease;
  }
  .course-completion-actions .splms-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .course-completion-actions .splms-btn.splms-btn-success:hover {
    background-color: #059669 !important;
  }
  @keyframes slideUpFadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .course-completed .splms-progress-bar .splms-progress-fill {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  }
  .course-completed .splms-status-badge.splms-status-completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    animation: statusPulse 2s ease-in-out infinite;
  }
  @keyframes statusPulse {
    0%, 100% {
      box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }
    50% {
      box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
    }
  }
  .splms-course-sidebar.course-completed .splms-curriculum-item.is-completed {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-left: 3px solid #10b981;
  }
  .splms-course-sidebar.course-completed::after {
    content: "🎉 Course Completed!";
    display: block;
    padding: 16px;
    margin: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    animation: completionBadgeAppear 0.8s ease-out forwards;
  }
  @keyframes completionBadgeAppear {
    0% {
      opacity: 0;
      transform: scale(0.8) translateY(10px);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
}
/* Enhanced Lesson Completion Button Styles */
.mark-lesson-complete {
  position: relative;
  transition: all 0.3s ease;
}
.mark-lesson-complete.loading {
  opacity: 0.7;
  cursor: not-allowed;
  color: transparent !important;
}
.mark-lesson-complete.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: buttonSpin 1s linear infinite;
}

.lesson-completed {
  background-color: #10b981 !important;
  border-color: #10b981 !important;
  animation: completionPulse 0.6s ease-in-out;
}

@keyframes buttonSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes completionPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* Curriculum Item Completion Animations */
.curriculum-item {
  transition: all 0.3s ease;
}
.curriculum-item.completed {
  background-color: rgba(16, 185, 129, 0.1);
  border-left: 3px solid #10b981;
}
.curriculum-item.completed .item-status {
  color: #10b981;
  font-weight: bold;
}
.curriculum-item.current {
  background-color: rgba(59, 130, 246, 0.1);
  border-left: 3px solid #3b82f6;
}
.curriculum-item.completion-animation {
  transform: scale(1.02);
  background-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.curriculum-item .item-status {
  transition: all 0.3s ease;
}

/* Progress Bar Enhancement */
.progress-fill,
.progress-bar-fill {
  transition: width 0.5s ease-in-out;
}

/* Lesson Meta Completion Indicator */
.completion-indicator {
  animation: fadeInScale 0.5s ease-in-out;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.course-curriculum .section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
}
.course-curriculum .section-title svg {
  color: #7e75ff;
}
.course-curriculum .curriculum-overview {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
}
.course-curriculum .curriculum-overview .curriculum-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.course-curriculum .curriculum-overview .curriculum-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}
.course-curriculum .curriculum-overview .curriculum-stats .stat-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #7e75ff, #6b5fff);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-icon svg {
  width: 16px;
  height: 16px;
}
.course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-content {
  flex: 1;
  min-width: 0;
}
.course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-content .stat-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1;
}
.course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-content .stat-label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
  font-weight: 500;
}
.course-curriculum .curriculum-overview .curriculum-stats .stat-item.progress-stat .stat-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}
.course-curriculum .curriculum-overview .course-progress-section {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}
.course-curriculum .curriculum-overview .course-progress-section .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.course-curriculum .curriculum-overview .course-progress-section .progress-header .progress-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a202c;
}
.course-curriculum .curriculum-overview .course-progress-section .progress-header .progress-percentage {
  font-size: 1rem;
  font-weight: 700;
  color: #10b981;
}
.course-curriculum .curriculum-overview .course-progress-section .progress-bar-container {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.course-curriculum .curriculum-overview .course-progress-section .progress-bar-container .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  border-radius: 4px;
  transition: width 0.6s ease;
  position: relative;
}
.course-curriculum .curriculum-overview .course-progress-section .progress-bar-container .progress-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}
.course-curriculum .curriculum-overview .course-progress-section .progress-details {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  text-align: center;
}
.course-curriculum .curriculum-content .curriculum-section {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.2s ease;
}
.course-curriculum .curriculum-content .curriculum-section:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}
.course-curriculum .curriculum-content .curriculum-section.section-locked {
  background: white;
}
.course-curriculum .curriculum-content .curriculum-section .section-header-wrapper {
  background: white;
}
.course-curriculum .curriculum-content .curriculum-section .section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  transition: all 0.2s ease;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-header-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  cursor: pointer;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-header-main:hover .section-number {
  transform: scale(1.05);
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-header-main:hover .section-title {
  color: #7e75ff;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #7e75ff, #6b5fff);
  color: white;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(126, 117, 255, 0.3);
  transition: transform 0.2s ease;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-info {
  flex: 1;
  min-width: 0;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-title {
  margin: 0 0 0.375rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1a202c;
  transition: color 0.2s ease;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #64748b;
  flex-wrap: wrap;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .item-count {
  font-weight: 500;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .section-progress {
  color: #10b981;
  font-weight: 600;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .section-pricing-badge {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .section-pricing-badge.free-badge {
  background-color: #d1f4e0;
  color: #0a6e31;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .section-pricing-badge.paid-badge {
  background-color: #cfe2ff;
  color: #084298;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .section-pricing-badge.sale-badge {
  background-color: #fff3cd;
  color: #856404;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .section-pricing-badge.sale-badge .original-price {
  text-decoration: line-through;
  opacity: 0.7;
  margin-left: 4px;
  font-size: 10px;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-toggle {
  background: none;
  border: none;
  padding: 0.375rem;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
  border-radius: 6px;
  flex-shrink: 0;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-toggle:hover {
  background: #e2e8f0;
  color: #7e75ff;
  transform: scale(1.05);
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.course-curriculum .curriculum-content .curriculum-section .section-header .section-toggle[aria-expanded=false] svg {
  transform: rotate(-90deg);
}
.course-curriculum .curriculum-content .curriculum-section .section-purchase-wrapper {
  padding: 0 1rem 1rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.course-curriculum .curriculum-content .curriculum-section .section-purchase-wrapper .section-purchase-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #7e75ff, #6b5fff);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(126, 117, 255, 0.25);
}
.course-curriculum .curriculum-content .curriculum-section .section-purchase-wrapper .section-purchase-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(126, 117, 255, 0.4);
  background: linear-gradient(135deg, #6b5fff, #5949ff);
}
.course-curriculum .curriculum-content .curriculum-section .section-purchase-wrapper .section-purchase-btn:active {
  transform: translateY(0);
}
.course-curriculum .curriculum-content .curriculum-section .section-purchase-wrapper .section-purchase-btn svg {
  width: 16px;
  height: 16px;
}
.course-curriculum .curriculum-content .curriculum-section .section-content {
  transition: all 0.3s ease;
  overflow: hidden;
}
.course-curriculum .curriculum-content .curriculum-section .section-content.collapsed {
  max-height: 0;
  padding: 0;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items {
  padding: 0;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item:last-child {
  border-bottom: none;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item:hover {
  background: #f8fafc;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.completed {
  background: #f0fdf4;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.completed .item-content .item-title {
  color: #10b981;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.locked {
  opacity: 0.6;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.locked .item-content .item-title {
  color: #94a3b8;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon svg {
  width: 12px;
  height: 12px;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon.completed {
  background: #10b981;
  color: white;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon.incomplete {
  border: 2px solid #cbd5e1;
  color: #cbd5e1;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status .status-icon.locked {
  background: #fbbf24;
  color: white;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-type-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #f1f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s ease;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-type-icon svg {
  width: 14px;
  height: 14px;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content {
  flex: 1;
  min-width: 0;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a202c;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-title:hover {
  color: #7e75ff;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  color: #94a3b8;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-meta .item-type-label {
  background: #f1f5f9;
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-meta .item-duration {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-meta .item-duration svg {
  width: 10px;
  height: 10px;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions {
  flex-shrink: 0;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .start-btn {
  background: #7e75ff;
  color: white;
  border: none;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .start-btn:hover {
  background: #6b5fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(126, 117, 255, 0.3);
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .start-btn:active {
  transform: translateY(0);
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .completion-badge {
  background: #10b981;
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .locked-badge {
  background: #fbbf24;
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.sp-lesson .item-type-icon {
  background: #ede9ff;
  color: #7e75ff;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.sp-lesson .item-meta .item-type-label {
  background: #ede9ff;
  color: #7e75ff;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.sp-quiz .item-type-icon {
  background: #fef3c7;
  color: #f59e0b;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item.sp-quiz .item-meta .item-type-label {
  background: #fef3c7;
  color: #f59e0b;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .empty-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  color: #94a3b8;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .empty-section svg {
  width: 24px;
  height: 24px;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}
.course-curriculum .curriculum-content .curriculum-section .section-content .empty-section p {
  margin: 0;
  font-style: italic;
  font-size: 0.875rem;
}
.course-curriculum .no-curriculum {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #64748b;
}
.course-curriculum .no-curriculum .no-curriculum-icon {
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.course-curriculum .no-curriculum .no-curriculum-icon svg {
  color: #94a3b8;
}
.course-curriculum .no-curriculum h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: #475569;
}
.course-curriculum .no-curriculum p {
  font-size: 0.875rem;
  margin: 0;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.curriculum-section .section-content {
  animation: slideDown 0.3s ease;
}

@media (max-width: 768px) {
  .course-curriculum .curriculum-overview {
    padding: 1rem;
  }
  .course-curriculum .curriculum-overview .curriculum-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .course-curriculum .curriculum-overview .curriculum-stats .stat-item {
    padding: 0.75rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-icon {
    width: 28px;
    height: 28px;
  }
  .course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-icon svg {
    width: 14px;
    height: 14px;
  }
  .course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-content .stat-number {
    font-size: 1.125rem;
  }
  .course-curriculum .curriculum-overview .curriculum-stats .stat-item .stat-content .stat-label {
    font-size: 0.6875rem;
  }
  .course-curriculum .curriculum-overview .course-progress-section {
    padding: 0.75rem;
  }
  .course-curriculum .curriculum-overview .course-progress-section .progress-header {
    flex-direction: column;
    gap: 0.375rem;
    text-align: center;
  }
  .course-curriculum .curriculum-overview .course-progress-section .progress-header .progress-percentage {
    font-size: 1.125rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-header {
    padding: 0.75rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-header .section-header-main {
    gap: 0.5rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-header .section-number {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
    font-size: 0.6875rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-header .section-info .section-meta .section-pricing-badge {
    font-size: 10px;
    padding: 2px 6px;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-header .section-toggle {
    padding: 0.25rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-header .section-toggle svg {
    width: 16px;
    height: 16px;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-purchase-wrapper {
    padding: 0 0.75rem 0.75rem 0.75rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-purchase-wrapper .section-purchase-btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item {
    padding: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-status {
    align-self: flex-start;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-type-icon {
    width: 24px;
    height: 24px;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-type-icon svg {
    width: 12px;
    height: 12px;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content {
    width: 100%;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-title {
    font-size: 0.8125rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-content .item-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.625rem;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions {
    width: 100%;
  }
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .start-btn,
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .completion-badge,
  .course-curriculum .curriculum-content .curriculum-section .section-content .curriculum-items .curriculum-item .item-actions .locked-badge {
    width: 100%;
    text-align: center;
    font-size: 0.6875rem;
  }
}
@media (max-width: 480px) {
  .course-curriculum .curriculum-overview .curriculum-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.course-curriculum .curriculum-stats-minimal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #666666;
  flex-wrap: wrap;
}
.course-curriculum .curriculum-stats-minimal .stat-text {
  color: #1a1a1a;
  font-weight: 500;
}
.course-curriculum .curriculum-stats-minimal .stat-separator {
  color: #d1d5db;
}
.course-curriculum .curriculum-stats-minimal .stat-progress {
  color: #7e75ff;
  font-weight: 600;
}
.course-curriculum .curriculum-section-minimal {
  padding: 1.25rem 0;
  position: relative;
}
.course-curriculum .curriculum-section-minimal:hover .section-title-minimal {
  color: #7e75ff;
}
.course-curriculum .curriculum-section-minimal.section-purchased {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, rgba(217, 119, 6, 0.02) 100%);
  margin: 0 -1rem;
  padding: 1.25rem 1rem;
  border-radius: 8px;
  border-left: 3px solid rgba(245, 158, 11, 0.4);
  transition: all 0.2s ease;
}
.course-curriculum .curriculum-section-minimal.section-purchased:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(217, 119, 6, 0.03) 100%);
  border-left-color: rgba(245, 158, 11, 0.6);
}
.course-curriculum .section-header-minimal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.course-curriculum .section-header-minimal .section-header-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  cursor: pointer;
}
.course-curriculum .section-header-minimal .section-number-minimal {
  font-size: 0.9375rem;
  color: #1a1a1a;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1.5;
}
.course-curriculum .section-header-minimal .section-info-minimal {
  flex: 1;
  min-width: 0;
}
.course-curriculum .section-header-minimal .section-info-minimal .section-title-minimal {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.25rem 0;
  transition: color 0.2s ease;
  line-height: 1.5;
}
.course-curriculum .section-header-minimal .section-info-minimal .section-meta-minimal {
  font-size: 0.8125rem;
  color: #666666;
  line-height: 1.4;
}
.course-curriculum .section-header-minimal .section-info-minimal .section-meta-minimal .section-progress-minimal {
  color: #10b981;
  font-weight: 500;
}
.course-curriculum .section-header-minimal .section-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.course-curriculum .section-header-minimal .section-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  transition: all 0.2s ease;
  opacity: 0.9;
}
.course-curriculum .section-header-minimal .section-link-icon svg {
  width: 14px;
  height: 14px;
  color: #9ca3af;
}
.course-curriculum .section-header-minimal .section-link-icon:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.course-curriculum .section-header-minimal .section-link-icon:active {
  transform: translateY(0);
}
.course-curriculum .section-header-minimal .section-price-minimal {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
}
.course-curriculum .section-header-minimal .section-price-minimal.section-price-link {
  color: #7e75ff;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  background: rgba(126, 117, 255, 0.08);
  border: 1px solid rgba(126, 117, 255, 0.2);
}
.course-curriculum .section-header-minimal .section-price-minimal.section-price-link:hover {
  background: rgba(126, 117, 255, 0.15);
  border-color: rgba(126, 117, 255, 0.3);
  color: #6b5fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(126, 117, 255, 0.2);
}
.course-curriculum .section-header-minimal .section-price-minimal.section-price-link:active {
  transform: translateY(0);
}
.course-curriculum .section-header-minimal .section-purchased-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
}
.course-curriculum .section-header-minimal .section-purchased-badge svg {
  width: 14px;
  height: 14px;
  color: #f59e0b;
  flex-shrink: 0;
}
.course-curriculum .section-header-minimal .section-purchased-badge:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.15) 100%);
  border-color: rgba(245, 158, 11, 0.4);
}
.course-curriculum .section-header-minimal .section-toggle-minimal {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #9ca3af;
  font-size: 1.25rem;
  line-height: 1;
  transition: color 0.2s ease;
  font-family: sans-serif;
  width: 20px;
  text-align: center;
}
.course-curriculum .section-header-minimal .section-toggle-minimal:hover {
  color: #7e75ff;
}
.course-curriculum .section-header-minimal .section-toggle-minimal[aria-expanded=true] {
  transform: none;
}
.course-curriculum .section-purchase-minimal {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
}
.course-curriculum .section-purchase-minimal .purchase-link-minimal {
  display: inline-block;
  font-size: 0.875rem;
  color: #7e75ff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.course-curriculum .section-purchase-minimal .purchase-link-minimal:hover {
  text-decoration: underline;
  color: #6b5fff;
}
.course-curriculum .section-divider-minimal {
  height: 1px;
  background: #e5e5e5;
  margin-top: 1.25rem;
}
.course-curriculum .curriculum-section-minimal .section-content {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.2s ease;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item:last-child {
  border-bottom: none;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item:hover {
  background-color: #fafafa;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-status {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-status .status-icon {
  width: 16px;
  height: 16px;
  color: #d1d5db;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-status .status-icon svg {
  width: 14px;
  height: 14px;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-status .status-icon.completed {
  color: #10b981;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-status .status-icon.locked {
  color: #9ca3af;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-type-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #9ca3af;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-type-icon svg {
  width: 14px;
  height: 14px;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-content {
  flex: 1;
  min-width: 0;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-content .item-title {
  display: block;
  font-size: 0.875rem;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.125rem;
  transition: color 0.2s ease;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-content .item-title:hover {
  color: #7e75ff;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-content .item-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-content .item-meta .item-type-label {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-content .item-meta .item-duration {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-content .item-meta .item-duration svg {
  width: 10px;
  height: 10px;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  padding: 0.375rem 0.875rem;
  border: 1px solid #7e75ff;
  border-radius: 4px;
  background-color: #7e75ff;
  transition: all 0.2s ease;
  font-weight: 500;
  line-height: 1;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .start-btn:hover {
  border-color: #6b5fff;
  background-color: #6b5fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(126, 117, 255, 0.3);
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .start-btn:active {
  transform: translateY(0);
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .completion-badge {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 500;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .locked-badge {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: #d1d5db;
  transition: color 0.2s ease;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item svg {
  width: 14px;
  height: 14px;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item:hover {
  color: #7e75ff;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .bookmark-btn-item.active {
  color: #7e75ff;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item.completed .item-title {
  color: #6b7280;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item.locked .item-title {
  color: #9ca3af;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item.guest-preview .item-status .status-icon {
  color: #7e75ff;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #6b7280;
  text-decoration: none;
  padding: 0.375rem 0.875rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background-color: #ffffff;
  transition: all 0.2s ease;
  font-weight: 500;
  line-height: 1;
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .preview-btn:hover {
  border-color: #7e75ff;
  color: #7e75ff;
  background-color: #f5f3ff;
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .preview-btn:active {
  transform: translateY(0);
}
.course-curriculum .curriculum-section-minimal .section-content .empty-section {
  padding: 2rem 0;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
  font-style: italic;
}
.course-curriculum .curriculum-section-minimal .section-content .empty-section svg {
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .course-curriculum .curriculum-stats-minimal {
    padding: 1rem 0;
    font-size: 0.875rem;
    gap: 0.5rem;
  }
  .course-curriculum .section-header-minimal {
    flex-direction: column;
    gap: 0.75rem;
  }
  .course-curriculum .section-header-minimal .section-header-right {
    width: 100%;
    justify-content: space-between;
    padding-left: 1.5rem;
  }
  .course-curriculum .section-purchase-minimal {
    padding-left: 1.5rem;
  }
  .course-curriculum .section-purchase-minimal .purchase-link-minimal {
    font-size: 0.8125rem;
  }
  .course-curriculum .curriculum-section-minimal .section-content {
    padding-left: 1rem;
  }
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item {
    padding: 0.625rem 0;
    gap: 0.5rem;
  }
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-status,
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-type-icon {
    width: 14px;
    height: 14px;
  }
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-status svg,
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-type-icon svg {
    width: 12px;
    height: 12px;
  }
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-content .item-title {
    font-size: 0.8125rem;
  }
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-content .item-meta {
    font-size: 0.6875rem;
  }
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .start-btn,
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .preview-btn {
    font-size: 0.6875rem;
    padding: 0.3125rem 0.625rem;
    gap: 0.25rem;
  }
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .completion-badge,
  .course-curriculum .curriculum-section-minimal .section-content .curriculum-items .curriculum-item .item-actions .locked-badge {
    font-size: 0.6875rem;
  }
}
.splms-course .ast-container,
.splms-course-category .ast-container,
.splms-course-tag .ast-container {
  max-width: 1326px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.splms-course .site-content .ast-container,
.splms-course-category .site-content .ast-container,
.splms-course-tag .site-content .ast-container {
  max-width: 100%;
  padding: 0;
  flex-direction: column;
}

.splms-course-category .splms-breadcrumb-wrapper,
.splms-course-tag .splms-breadcrumb-wrapper {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 0;
}
.splms-course-category .splms-breadcrumb-wrapper .splms-breadcrumb-container,
.splms-course-tag .splms-breadcrumb-wrapper .splms-breadcrumb-container {
  max-width: 1280px;
  margin: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .splms-course-category .splms-breadcrumb-wrapper .splms-breadcrumb-container,
  .splms-course-tag .splms-breadcrumb-wrapper .splms-breadcrumb-container {
    padding: 0 1rem;
  }
}
.splms-course-category .splms-breadcrumb-wrapper .splms-breadcrumb,
.splms-course-tag .splms-breadcrumb-wrapper .splms-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #ffffff;
}
.splms-course-category .splms-breadcrumb-wrapper .splms-breadcrumb .splms-breadcrumb__link,
.splms-course-tag .splms-breadcrumb-wrapper .splms-breadcrumb .splms-breadcrumb__link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-course-category .splms-breadcrumb-wrapper .splms-breadcrumb .splms-breadcrumb__link:hover,
.splms-course-tag .splms-breadcrumb-wrapper .splms-breadcrumb .splms-breadcrumb__link:hover {
  color: #e8e6ff;
}
.splms-course-category .splms-breadcrumb-wrapper .splms-breadcrumb .splms-breadcrumb__separator,
.splms-course-tag .splms-breadcrumb-wrapper .splms-breadcrumb .splms-breadcrumb__separator {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.splms-page-headign {
  background-image: linear-gradient(to right, #6c63ff, #7e75ff);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}
.splms-page-headign .title {
  line-height: 40px;
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--splms-white);
  margin-bottom: 12px;
}
.splms-page-headign .archive-subtitle {
  color: var(--splms-white);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
}
.splms-page-headign::before {
  content: "";
  width: 300px;
  height: 300px;
  background: #FFFFFF;
  opacity: 0.05;
  position: absolute;
  bottom: 0;
  pointer-events: none;
  right: -100px;
  border-radius: 50%;
}
.splms-page-headign::after {
  content: "";
  width: 220px;
  height: 220px;
  background: #FFFFFF;
  opacity: 0.05;
  position: absolute;
  pointer-events: none;
  bottom: -50px;
  left: -50px;
  border-radius: 50%;
}

.splms-container {
  max-width: 1326px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.splms-courses-main {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}

.splms-sidebar-filters {
  max-width: 306px;
  width: 100%;
}
.splms-sidebar-filters .splms-filter-close-btns {
  display: none;
}
.splms-sidebar-filters .sidebar-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.splms-sidebar-filters .sidebar-filter-header h3 {
  font-size: 20px;
  line-height: 24px;
  color: #111827;
  margin-bottom: 0;
}
.splms-sidebar-filters .sidebar-filter-header .clear-all-filters {
  font-size: 0.875rem;
  color: var(--splms-primary);
  text-decoration: none;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all 0.3s ease;
}
.splms-sidebar-filters .sidebar-filter-header .clear-all-filters:hover {
  color: var(--splms-gray-600);
}
.splms-sidebar-filters .archive-controls-right {
  padding: 16px;
  border: 1px solid var(--splms-border);
  border-radius: 8px;
  background: var(--splms-white);
  margin-bottom: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
}
.splms-sidebar-filters .filter-group {
  width: 100%;
}
.splms-sidebar-filters .filter-group select {
  border: 1px solid #dee2e6;
  padding: 8px 12px;
  min-height: 48px;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #212529;
  appearance: none;
  background-color: var(--splms-white);
  box-shadow: unset;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 16px 12px;
  background-position: right 12px center;
}
.splms-sidebar-filters .filter-group select:focus {
  outline: none;
  border-color: var(--splms-primary);
  box-shadow: unset;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion {
  border: 1px solid var(--splms-border);
  border-radius: 8px;
  background: var(--splms-white);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion[data-collapsed=true] .filter-section-content {
  padding: 0;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  background: linear-gradient(135deg, #F8F9FF 70.71%, #FAFBFF 0%);
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-header[aria-expanded=false] .accordion-arrow {
  transform: rotate(-90deg);
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-header .filter-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--splms-primary);
  margin: 0;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-header .filter-section-title .filter-icon {
  width: 18px;
  height: 18px;
  color: var(--splms-primary);
  flex-shrink: 0;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-header .filter-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-header .filter-count-badge {
  min-width: 24px;
  height: 24px;
  padding: 0;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--splms-primary);
  border-radius: 6px;
  color: var(--splms-white);
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-header .accordion-arrow {
  width: 12px;
  height: 12px;
  color: #343a40;
  flex-shrink: 0;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-content {
  padding: 16px;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-content .filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-content .filter-options.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-direction: unset;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-content .filter-options.filter-tags .filter-tag-label {
  position: relative;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-content .filter-options.filter-tags .filter-tag-label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  opacity: 0;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-content .filter-options.filter-tags .filter-tag-label .tag-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 12px;
  font-weight: 500;
  font-size: 14px;
  color: #111827;
  line-height: 20px;
  border: 1px solid var(--splms-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-content .filter-options.filter-tags .filter-tag-label .tag-text:hover {
  color: var(--splms-white);
  border: 1px solid var(--splms-primary);
  background: var(--splms-primary);
}
.splms-sidebar-filters .sidebar-filters-form .filter-accordion .filter-section-content .filter-options.filter-tags .filter-tag-label input:checked ~ .tag-text {
  color: var(--splms-white);
  border: 1px solid var(--splms-primary);
  background: var(--splms-primary);
}
.splms-sidebar-filters .filter-checkbox-label {
  position: relative;
  padding: 0;
  padding-left: 28px;
  cursor: pointer;
}
.splms-sidebar-filters .filter-checkbox-label .filter-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
}
.splms-sidebar-filters .filter-checkbox-label .checkmark {
  border: 1px solid var(--splms-border);
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 3px;
  left: 0;
}
.splms-sidebar-filters .filter-checkbox-label input:checked ~ .checkmark {
  border: 1px solid var(--splms-primary);
  background-color: var(--splms-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_179_2)'%3E%3Cpath d='M5 12L10 17L20 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_179_2'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center;
}
.splms-sidebar-filters .filter-checkbox-label .filter-option-text {
  flex: 1;
  font-size: 14px;
  line-height: 24px;
  color: #111827;
}
.splms-sidebar-filters .filter-checkbox-label .filter-option-text .filter-count {
  font-size: 12px;
  color: #6b7280;
}
.splms-sidebar-filters .filter-radio-label {
  position: relative;
  padding: 0;
  padding-left: 28px;
  cursor: pointer;
}
.splms-sidebar-filters .filter-radio-label .filter-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
}
.splms-sidebar-filters .filter-radio-label .radiomark {
  border: 1px solid var(--splms-border);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 3px;
  left: 0;
}
.splms-sidebar-filters .filter-radio-label input:checked ~ .radiomark {
  border: 5px solid var(--splms-primary);
}
.splms-sidebar-filters .filter-radio-label .filter-option-text {
  flex: 1;
  font-size: 14px;
  line-height: 24px;
  color: #111827;
}
.splms-sidebar-filters .filter-radio-label .filter-option-text .filter-count {
  font-size: 12px;
  color: #6b7280;
}
.splms-sidebar-filters .load-more-btn {
  padding: 0;
  box-shadow: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--splms-primary);
  margin: 0;
  margin-top: 12px;
  background: transparent;
}
.splms-sidebar-filters .filter-actions .filter-apply-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--splms-primary);
  border: 1px solid var(--splms-primary);
  color: var(--splms-white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.splms-sidebar-filters .filter-actions .filter-apply-btn:hover {
  color: var(--splms-primary);
  background: var(--splms-white);
}

.splms-top-search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.splms-top-search-box .archive-controls-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.splms-top-search-box .archive-controls-left .course-count-badge {
  font-size: 16px;
  line-height: 24px;
  color: #111827;
  font-weight: 500;
  display: flex;
}
.splms-top-search-box .archive-controls-left .splms-filter-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--splms-primary);
  border: 1px solid var(--splms-primary);
  border-radius: 8px;
  color: var(--splms-white);
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}
.splms-top-search-box .archive-controls-left .splms-filter-button .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splms-top-search-box .archive-controls-left .splms-filter-button:hover {
  background: var(--splms-white);
  color: var(--splms-primary);
}
.splms-top-search-box .archive-controls-left .splms-filter-button:hover svg path {
  stroke: var(--splms-primary);
}
.splms-top-search-box .splms-search-layout {
  display: flex;
  align-items: center;
  gap: 16px;
}
.splms-top-search-box .splms-search-layout .splms-layout-switcher {
  border: 1px solid var(--splms-border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 3px;
  border-radius: 8px;
}
.splms-top-search-box .splms-search-layout .splms-layout-switcher input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  opacity: 0;
}
.splms-top-search-box .splms-search-layout .splms-layout-switcher .layout-switch-btn {
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.splms-top-search-box .splms-search-layout .splms-layout-switcher .layout-switch-btn:hover svg path {
  stroke: var(--splms-primary);
}
.splms-top-search-box .splms-search-layout .splms-layout-switcher .layout-switch-btn.active {
  background: var(--splms-primary);
}
.splms-top-search-box .splms-search-layout .splms-layout-switcher .layout-switch-btn.active svg path {
  stroke: var(--splms-white);
}
.splms-top-search-box .splms-search-layout .splms-layout-switcher .layout-switch-btn.active:hover svg path {
  stroke: var(--splms-white);
}
.splms-top-search-box .splms-search-toggle-wrapper {
  width: 300px;
}
.splms-top-search-box .splms-search-toggle-wrapper .splms-search-input-wrapper {
  position: relative;
}
.splms-top-search-box .splms-search-toggle-wrapper .splms-search-input-wrapper .splms-search-input {
  padding: 0 44px 0 16px;
  height: 44px;
  font-size: 16px;
  line-height: 24px;
  color: #111827;
  border: 1px solid var(--splms-border);
  border-radius: 8px;
  box-shadow: unset;
  outline: unset;
}
.splms-top-search-box .splms-search-toggle-wrapper .splms-search-input-wrapper .splms-search-submit {
  min-width: 35px;
  max-width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--splms-primary);
  border-radius: 6px;
  cursor: pointer;
  background: var(--splms-primary);
  position: absolute;
  top: 4px;
  right: 4px;
  transition: all 0.3s ease-in-out;
  padding: 0;
  color: #6b7280;
  flex-shrink: 0;
  z-index: 2;
}
.splms-top-search-box .splms-search-toggle-wrapper .splms-search-input-wrapper .splms-search-submit:hover {
  background: var(--splms-white);
}
.splms-top-search-box .splms-search-toggle-wrapper .splms-search-input-wrapper .splms-search-submit:hover svg path {
  stroke: var(--splms-primary);
}

.splms-courses-content {
  width: 100%;
}

.splms-course-card {
  border: 1px solid #E1E5F0;
  border-radius: 12px;
  background: var(--splms-white);
  display: flex;
  flex-direction: column;
}
.splms-course-card .course-card-image {
  position: relative;
}
.splms-course-card .course-card-image .course-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 65%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.splms-course-card .course-card-image .course-image-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.splms-course-card .course-card-image .course-card-overlay {
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.splms-course-card .course-card-image .course-card-overlay .course-difficulty {
  padding: 3px 12px;
  font-weight: 600;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: var(--splms-white);
  border-radius: 6px;
  background: linear-gradient(135deg, #6C63FF 70.71%, #7E75FF 0%);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 1px 2px 0px rgba(0, 0, 0, 0.1019607843);
}
.splms-course-card .course-card-image .course-card-overlay .course-wishlist-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #F8F9FB 100%, #FAFBFC 0%);
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.splms-course-card:hover .course-card-image .course-image-link img {
  transform: scale(1.2);
}
.splms-course-card .course-card-content {
  padding: 16px;
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.splms-course-card .course-card-content .course-author {
  margin-bottom: 12px;
}
.splms-course-card .course-card-content .course-author .author-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #111827;
  text-transform: capitalize;
}
.splms-course-card .course-card-content .course-author .author-link:focus {
  outline: unset;
}
.splms-course-card .course-card-content .course-author .author-link .images {
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splms-course-card .course-card-content .course-author .author-link .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splms-course-card .course-card-content .course-title {
  font-size: 20px;
  line-height: 28px;
  color: #111827;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.splms-course-card .course-card-content .course-title:hover {
  color: var(--splms-primary);
}
.splms-course-card .course-card-content .course-title .course-title-link {
  outline: none;
}
.splms-course-card .course-card-content .course-title .course-title-link:focus {
  outline: none;
}
.splms-course-card .course-card-content .course-excerpt {
  font-size: 14px;
  line-height: 20px;
  color: #343a40;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.splms-course-card .course-card-content .course-meta {
  margin: 16px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 6px;
}
.splms-course-card .course-card-content .course-meta .course-meta-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 5px;
  flex: 0 50%;
  width: 50%;
  row-gap: 6px;
  font-size: 14px;
  line-height: 20px;
  color: #111827;
}
.splms-course-card .course-card-content .course-meta .course-meta-item .icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splms-course-card .course-card-content .course-meta .course-meta-item .icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.splms-course-card .course-card-content .course-meta .course-meta-item .rating-count {
  font-weight: 500;
}
.splms-course-card .course-card-content .course-meta .course-meta-item .rating-count span {
  font-size: 12px;
  color: #343a40;
  font-weight: 400;
}
.splms-course-card .course-card-content .course-meta .course-meta-item .price-free {
  color: #009688;
}
.splms-course-card .course-card-content .course-meta .course-meta-item .price-sale {
  color: #FF5722;
  font-weight: 700;
  font-size: 1rem;
}
.splms-course-card .course-card-content .course-meta .course-meta-item .price-regular {
  color: #343a40;
  text-decoration: line-through;
  font-size: 0.75rem;
  padding-left: 5px;
}
.splms-course-card .course-card-content .course-actions {
  padding-top: 16px;
  border-top: 1px dashed var(--splms-border);
  margin-top: auto;
}
.splms-course-card .course-card-content .course-actions .btn.btn-primary {
  background: var(--splms-primary);
  border: 1px solid var(--splms-primary);
  color: var(--splms-white);
}
.splms-course-card .course-card-content .course-actions .btn.btn-primary:hover {
  color: var(--splms-primary);
  background: var(--splms-white);
}

.splms-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.splms-courses-grid[data-layout=list] {
  display: block;
  margin-bottom: 16px;
}
.splms-courses-grid[data-layout=list] .splms-course-card {
  padding: 12px;
  flex-direction: row;
  margin-bottom: 16px;
}
.splms-courses-grid[data-layout=list] .splms-course-card .course-card-image {
  max-width: 350px;
  width: 100%;
}
.splms-courses-grid[data-layout=list] .splms-course-card .course-card-image .course-image-link {
  border-radius: 12px;
  padding-top: 65%;
}
.splms-courses-grid[data-layout=list] .splms-course-card .course-card-content {
  padding: 0;
  margin-left: 24px;
}
.splms-courses-grid[data-layout=list] .splms-course-card .course-card-content .course-excerpt {
  -webkit-line-clamp: 1;
}

@media only screen and (max-width: 1200px) {
  .splms-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .splms-courses-grid[data-layout=list] .splms-course-card .course-card-image {
    max-width: 280px;
  }
  .splms-courses-grid[data-layout=list] .splms-course-card .course-card-content {
    margin-left: 16px;
  }
}
@media only screen and (max-width: 991px) {
  body.splms-course::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.368627451);
    left: -100%;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease-in-out;
  }
  .splms-sidebar-filters {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100dvh;
    overflow: auto;
    z-index: 100;
    padding: 12px;
    background: var(--splms-white);
    transition: all 0.3s ease-in-out;
  }
  .splms-sidebar-filters .splms-filter-close-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: auto;
    background: transparent;
    padding: 0;
    box-shadow: unset;
    border: 0;
    transition: all 0.3s ease-in-out;
  }
  .splms-sidebar-filters .splms-filter-close-btns:hover svg path {
    stroke: var(--splms-primary);
  }
  .splms-top-search-box {
    flex-direction: column;
  }
  .splms-top-search-box .splms-search-layout {
    width: 100%;
    justify-content: space-between;
  }
  .splms-top-search-box .archive-controls-left {
    width: 100%;
    justify-content: space-between;
  }
  .splms-top-search-box .archive-controls-left .splms-filter-button {
    display: flex;
  }
  body.splms-filter-open {
    overflow: hidden;
    height: 100dvh;
  }
  body.splms-filter-open::before,
  body.splms-filter-open .splms-sidebar-filters {
    left: 0;
  }
}
@media only screen and (max-width: 640px) {
  .splms-courses-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .splms-courses-grid[data-layout=list] .splms-course-card {
    flex-direction: column;
  }
  .splms-courses-grid[data-layout=list] .splms-course-card .course-card-image {
    max-width: 100%;
  }
  .splms-courses-grid[data-layout=list] .splms-course-card .course-card-content {
    margin: 16px 0 0;
  }
}
@media only screen and (max-width: 544px) {
  .ast-separate-container #content .ast-container {
    padding: 0;
  }
}
/**
 * Shared Learning Player Layout
 * Used by both Lesson and Quiz pages
 * 
 * Provides consistent sidebar + content layout with theme-independent styling
 */
.splms-learning-player,
.splms-learning-player.splms-lesson-container,
.splms-learning-player.splms-quiz-container {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.splms-learning-layout,
.splms-learning-layout.splms-lesson-main,
.splms-learning-layout.splms-quiz-main {
  display: flex;
  flex: 1;
  min-height: calc(100vh - 120px);
  width: 100%;
}

.splms-learning-sidebar,
.splms-lesson-sidebar,
.splms-quiz-sidebar {
  width: 320px;
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
  overflow-y: auto;
  flex-shrink: 0;
  min-height: calc(100vh - 120px);
}

.splms-learning-content,
.splms-lesson-content,
.splms-quiz-content {
  flex: 1;
  background: #ffffff;
  overflow-x: hidden;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 8px;
}

@media (max-width: 768px) {
  .splms-learning-layout,
  .splms-learning-layout.splms-lesson-main,
  .splms-learning-layout.splms-quiz-main {
    flex-direction: column;
  }
  .splms-learning-sidebar,
  .splms-lesson-sidebar,
  .splms-quiz-sidebar {
    width: 100%;
    min-height: auto;
    max-height: 40vh;
    order: 2;
    border-right: none;
    border-top: 1px solid #e5e7eb;
  }
  .splms-learning-content,
  .splms-lesson-content,
  .splms-quiz-content {
    order: 1;
    min-height: 60vh;
  }
}
@media (max-width: 480px) {
  .splms-learning-sidebar,
  .splms-lesson-sidebar,
  .splms-quiz-sidebar {
    max-height: 30vh;
  }
  .splms-learning-content,
  .splms-lesson-content,
  .splms-quiz-content {
    min-height: 70vh;
  }
}
.splms-grid {
  display: grid;
  gap: 1.5rem;
}
.splms-grid.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}
.splms-grid.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.splms-grid.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.splms-grid.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.splms-grid.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.splms-grid.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.splms-grid.gap-0 {
  gap: 0;
}
.splms-grid.gap-1 {
  gap: 0.25rem;
}
.splms-grid.gap-2 {
  gap: 0.5rem;
}
.splms-grid.gap-3 {
  gap: 0.75rem;
}
.splms-grid.gap-4 {
  gap: 1rem;
}
.splms-grid.gap-5 {
  gap: 1.25rem;
}
.splms-grid.gap-6 {
  gap: 1.5rem;
}
.splms-grid.gap-8 {
  gap: 2rem;
}
.splms-grid.gap-10 {
  gap: 2.5rem;
}
.splms-grid.gap-12 {
  gap: 3rem;
}
.splms-grid.grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.splms-grid.grid-auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@media (max-width: 1024px) {
  .splms-grid.grid-cols-6 {
    grid-template-columns: repeat(4, 1fr);
  }
  .splms-grid.grid-cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .splms-grid.grid-cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .splms-grid.grid-cols-6, .splms-grid.grid-cols-5, .splms-grid.grid-cols-4, .splms-grid.grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .splms-grid.grid-cols-6, .splms-grid.grid-cols-5, .splms-grid.grid-cols-4, .splms-grid.grid-cols-3, .splms-grid.grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

.splms-grid-item.col-span-1 {
  grid-column: span 1;
}
.splms-grid-item.col-span-2 {
  grid-column: span 2;
}
.splms-grid-item.col-span-3 {
  grid-column: span 3;
}
.splms-grid-item.col-span-4 {
  grid-column: span 4;
}
.splms-grid-item.col-span-5 {
  grid-column: span 5;
}
.splms-grid-item.col-span-6 {
  grid-column: span 6;
}
.splms-grid-item.col-span-full {
  grid-column: 1/-1;
}
.splms-grid-item.row-span-1 {
  grid-row: span 1;
}
.splms-grid-item.row-span-2 {
  grid-row: span 2;
}
.splms-grid-item.row-span-3 {
  grid-row: span 3;
}
.splms-grid-item.row-span-4 {
  grid-row: span 4;
}
.splms-grid-item.row-span-5 {
  grid-row: span 5;
}
.splms-grid-item.row-span-6 {
  grid-row: span 6;
}
.splms-grid-item.row-span-full {
  grid-row: 1/-1;
}
@media (max-width: 1024px) {
  .splms-grid-item.col-span-6 {
    grid-column: span 4;
  }
  .splms-grid-item.col-span-5 {
    grid-column: span 3;
  }
  .splms-grid-item.col-span-4 {
    grid-column: span 3;
  }
}
@media (max-width: 768px) {
  .splms-grid-item.col-span-6, .splms-grid-item.col-span-5, .splms-grid-item.col-span-4, .splms-grid-item.col-span-3 {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .splms-grid-item.col-span-6, .splms-grid-item.col-span-5, .splms-grid-item.col-span-4, .splms-grid-item.col-span-3, .splms-grid-item.col-span-2 {
    grid-column: span 1;
  }
}

.splms-grid.items-start {
  align-items: start;
}
.splms-grid.items-center {
  align-items: center;
}
.splms-grid.items-end {
  align-items: end;
}
.splms-grid.items-stretch {
  align-items: stretch;
}
.splms-grid.justify-start {
  justify-items: start;
}
.splms-grid.justify-center {
  justify-items: center;
}
.splms-grid.justify-end {
  justify-items: end;
}
.splms-grid.justify-stretch {
  justify-items: stretch;
}
.splms-grid.content-start {
  align-content: start;
}
.splms-grid.content-center {
  align-content: center;
}
.splms-grid.content-end {
  align-content: end;
}
.splms-grid.content-between {
  align-content: space-between;
}
.splms-grid.content-around {
  align-content: space-around;
}
.splms-grid.content-evenly {
  align-content: space-evenly;
}

.splms-hidden {
  display: none !important;
}

@media (max-width: 640px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 640px) and (max-width: 768px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .hidden-xl {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .text-left-sm {
    text-align: left !important;
  }
  .text-center-sm {
    text-align: center !important;
  }
  .text-right-sm {
    text-align: right !important;
  }
}
@media (min-width: 640px) and (max-width: 768px) {
  .text-left-md {
    text-align: left !important;
  }
  .text-center-md {
    text-align: center !important;
  }
  .text-right-md {
    text-align: right !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .text-left-lg {
    text-align: left !important;
  }
  .text-center-lg {
    text-align: center !important;
  }
  .text-right-lg {
    text-align: right !important;
  }
}
@media (min-width: 1024px) {
  .text-left-xl {
    text-align: left !important;
  }
  .text-center-xl {
    text-align: center !important;
  }
  .text-right-xl {
    text-align: right !important;
  }
}
@media (max-width: 640px) {
  .m-0-sm {
    margin: 0 !important;
  }
  .mt-0-sm {
    margin-top: 0 !important;
  }
  .mb-0-sm {
    margin-bottom: 0 !important;
  }
  .ml-0-sm {
    margin-left: 0 !important;
  }
  .mr-0-sm {
    margin-right: 0 !important;
  }
  .p-0-sm {
    padding: 0 !important;
  }
  .pt-0-sm {
    padding-top: 0 !important;
  }
  .pb-0-sm {
    padding-bottom: 0 !important;
  }
  .pl-0-sm {
    padding-left: 0 !important;
  }
  .pr-0-sm {
    padding-right: 0 !important;
  }
}
.splms-flex {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .splms-flex.flex-column-sm {
    flex-direction: column !important;
  }
  .splms-flex.flex-row-sm {
    flex-direction: row !important;
  }
  .splms-flex.justify-center-sm {
    justify-content: center !important;
  }
  .splms-flex.align-center-sm {
    align-items: center !important;
  }
}
@media (min-width: 640px) and (max-width: 768px) {
  .splms-flex.flex-column-md {
    flex-direction: column !important;
  }
  .splms-flex.flex-row-md {
    flex-direction: row !important;
  }
  .splms-flex.justify-center-md {
    justify-content: center !important;
  }
  .splms-flex.align-center-md {
    align-items: center !important;
  }
}

.splms-img {
  max-width: 100%;
  height: auto;
}
.splms-img.img-fluid {
  width: 100%;
}
@media (max-width: 640px) {
  .splms-img.img-sm-fluid {
    width: 100%;
  }
}

.splms-table {
  width: 100%;
  margin-bottom: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
  .splms-table {
    display: block;
  }
  .splms-table table {
    min-width: 100%;
  }
  .splms-table th, .splms-table td {
    min-width: 120px;
  }
}

@media (max-width: 640px) {
  .gap-0-sm {
    gap: 0 !important;
  }
  .gap-1-sm {
    gap: 0.25rem !important;
  }
  .gap-2-sm {
    gap: 0.5rem !important;
  }
  .gap-3-sm {
    gap: 0.75rem !important;
  }
  .gap-4-sm {
    gap: 1rem !important;
  }
}
@media (max-width: 640px) {
  .order-first-sm {
    order: -1 !important;
  }
  .order-last-sm {
    order: 999 !important;
  }
  .order-0-sm {
    order: 0 !important;
  }
  .order-1-sm {
    order: 1 !important;
  }
  .order-2-sm {
    order: 2 !important;
  }
}
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .splms-header,
  .splms-footer,
  .splms-sidebar,
  .splms-navigation,
  .splms-search,
  .splms-filters,
  .splms-pagination,
  .splms-actions,
  .splms-comments,
  .splms-related,
  .splms-social-share,
  .splms-buttons,
  .no-print {
    display: none !important;
  }
  .splms-course {
    margin: 0;
    padding: 0;
    border: none;
  }
  .splms-course .course-title {
    font-size: 24pt;
    margin-bottom: 1cm;
  }
  .splms-course .course-meta {
    margin-bottom: 1cm;
    font-size: 12pt;
  }
  .splms-course .course-content {
    font-size: 12pt;
    line-height: 1.5;
    margin-bottom: 1cm;
  }
  .splms-course .course-sections {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 1cm;
  }
  .splms-course .course-lessons {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 0.5cm;
  }
  a {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }
  a[href^="#"]:after, a[href^="javascript:"]:after {
    content: "";
  }
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  table {
    border-collapse: collapse !important;
    width: 100% !important;
    margin-bottom: 1cm;
  }
  table th,
  table td {
    background-color: #fff !important;
    border: 1pt solid #999 !important;
    padding: 0.25cm !important;
    text-align: left !important;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  p, blockquote, ul, ol, dl {
    orphans: 3;
    widows: 3;
  }
  @page {
    margin: 2cm;
  }
  .splms-certificate {
    page-break-before: always;
    page-break-after: always;
    margin: 0;
    padding: 2cm;
    border: 1pt solid #999;
    text-align: center;
  }
  .splms-certificate .certificate-title {
    font-size: 24pt;
    margin-bottom: 1cm;
  }
  .splms-certificate .certificate-content {
    font-size: 14pt;
    line-height: 1.5;
    margin-bottom: 1cm;
  }
  .splms-certificate .certificate-signature {
    margin-top: 2cm;
    border-top: 1pt solid #999;
    padding-top: 0.5cm;
    font-style: italic;
  }
  .print-only {
    display: block !important;
  }
  .print-break-before {
    page-break-before: always;
  }
  .print-break-after {
    page-break-after: always;
  }
  .print-avoid-break {
    page-break-inside: avoid;
  }
}
/* ========================================
   Header Styles
   ======================================== */
.splms-header {
  background: var(--splms-white, #ffffff);
  border-bottom: 1px solid var(--splms-border, #e2e8f0);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.splms-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.splms-header-container {
  max-width: var(--splms-container-max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--splms-container-padding, 1rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

/* ========================================
   Site Branding
   ======================================== */
.splms-site-branding {
  flex-shrink: 0;
}
.splms-site-branding .splms-logo-link {
  display: block;
  text-decoration: none;
}
.splms-site-branding .splms-logo-link:hover {
  opacity: 0.8;
}
.splms-site-branding .splms-logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
}
.splms-site-branding .splms-site-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--splms-primary, #3b82f6);
}
.splms-site-branding .splms-site-title a {
  color: inherit;
  text-decoration: none;
}
.splms-site-branding .splms-site-title a:hover {
  opacity: 0.8;
}
.splms-site-branding .splms-site-description {
  margin: 0;
  font-size: 0.875rem;
  color: var(--splms-gray-600, #6b7280);
}

/* ========================================
   Main Navigation
   ======================================== */
.splms-main-navigation {
  flex: 1;
  margin: 0 2rem;
}
@media (max-width: 1024px) {
  .splms-main-navigation {
    display: none;
  }
}
.splms-main-navigation .splms-nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.splms-main-navigation .splms-nav-menu li {
  position: relative;
}
.splms-main-navigation .splms-nav-menu li a {
  color: var(--splms-gray-700, #374151);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}
.splms-main-navigation .splms-nav-menu li a:hover, .splms-main-navigation .splms-nav-menu li a.current-menu-item {
  color: var(--splms-primary, #3b82f6);
}
.splms-main-navigation .splms-nav-menu li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--splms-white, #ffffff);
  border: 1px solid var(--splms-border, #e2e8f0);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
}
.splms-main-navigation .splms-nav-menu li .sub-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--splms-gray-600, #6b7280);
}
.splms-main-navigation .splms-nav-menu li .sub-menu li a:hover {
  background: var(--splms-gray-50, #f9fafb);
  color: var(--splms-primary, #3b82f6);
}
.splms-main-navigation .splms-nav-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ========================================
   User Area
   ======================================== */
.splms-user-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ========================================
   Authentication Buttons
   ======================================== */
.splms-auth-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.splms-auth-buttons .splms-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 0.875rem;
}
.splms-auth-buttons .splms-btn.splms-btn-outline {
  color: var(--splms-primary, #3b82f6);
  border-color: var(--splms-primary, #3b82f6);
  background: transparent;
}
.splms-auth-buttons .splms-btn.splms-btn-outline:hover {
  background: var(--splms-primary, #3b82f6);
  color: var(--splms-white, #ffffff);
}
.splms-auth-buttons .splms-btn.splms-btn-primary {
  background: var(--splms-primary, #3b82f6);
  color: var(--splms-white, #ffffff);
}
.splms-auth-buttons .splms-btn.splms-btn-primary:hover {
  background: var(--splms-primary-dark, #2563eb);
}
@media (max-width: 768px) {
  .splms-auth-buttons {
    display: none;
  }
}

/* ========================================
   Notifications - Moved to _nav-menu-profile.scss
   ======================================== */
/* All notification styles consolidated in _nav-menu-profile.scss */
/* ========================================
   User Menu
   ======================================== */
.splms-user-menu {
  position: relative;
}
.splms-user-menu .splms-user-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.splms-user-menu .splms-user-menu-toggle:hover {
  background: var(--splms-gray-100, #f3f4f6);
}
.splms-user-menu .splms-user-menu-toggle[aria-expanded=true] .splms-dropdown-arrow {
  transform: rotate(180deg);
}
.splms-user-menu .splms-user-avatar {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.splms-user-menu .splms-user-name {
  color: var(--splms-gray-700, #374151);
  font-weight: 500;
  font-size: 0.875rem;
}
@media (max-width: 900px) {
  .splms-user-menu .splms-user-name {
    display: none;
  }
}
.splms-user-menu .splms-dropdown-arrow {
  color: var(--splms-gray-400, #9ca3af);
  transition: transform 0.2s ease;
}
@media (max-width: 900px) {
  .splms-user-menu .splms-dropdown-arrow {
    display: none;
  }
}
.splms-user-menu .splms-user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--splms-white, #ffffff);
  border: 1px solid var(--splms-border, #e2e8f0);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 320px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.splms-user-menu .splms-user-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.splms-user-menu .splms-user-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: var(--splms-white, #ffffff);
  border: 1px solid var(--splms-border, #e2e8f0);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  z-index: -1;
}
.splms-user-menu .splms-user-dropdown-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--splms-primary, #3b82f6) 0%, var(--splms-primary-dark, #2563eb) 100%);
  position: relative;
  overflow: hidden;
}
.splms-user-menu .splms-user-dropdown-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
  pointer-events: none;
}
.splms-user-menu .splms-user-dropdown-header .splms-user-avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.splms-user-menu .splms-user-dropdown-header .splms-user-avatar-container .splms-user-avatar-large {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
.splms-user-menu .splms-user-dropdown-header .splms-user-info {
  flex: 1;
  min-width: 0;
}
.splms-user-menu .splms-user-dropdown-header .splms-user-display-name {
  font-weight: 600;
  color: var(--splms-gray-900, #111827);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.splms-user-menu .splms-user-dropdown-header .splms-user-email {
  color: var(--splms-gray-500, #6b7280);
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
  word-break: break-all;
}
.splms-user-menu .splms-user-dropdown-header .splms-user-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.splms-user-menu .splms-user-dropdown-header .splms-user-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.splms-user-menu .splms-user-dropdown-header .splms-user-actions .splms-quick-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--splms-white, #ffffff);
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-user-menu .splms-user-dropdown-header .splms-user-actions .splms-quick-action:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.splms-user-menu .splms-user-dropdown-header > * {
  position: relative;
  z-index: 1;
}
.splms-user-menu .splms-user-stats {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--splms-border, #e2e8f0);
  background: var(--splms-gray-50, #f9fafb);
}
.splms-user-menu .splms-user-stats .splms-user-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.splms-user-menu .splms-user-stats .splms-user-stats-grid .splms-stat-item {
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--splms-white, #ffffff);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.splms-user-menu .splms-user-stats .splms-user-stats-grid .splms-stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.splms-user-menu .splms-user-stats .splms-user-stats-grid .splms-stat-item .splms-stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--splms-primary, #3b82f6);
  margin-bottom: 0.25rem;
}
.splms-user-menu .splms-user-stats .splms-user-stats-grid .splms-stat-item .splms-stat-label {
  font-size: 0.75rem;
  color: var(--splms-gray-600, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.splms-user-menu .splms-user-dropdown-menu {
  padding: 0.5rem 0;
}
.splms-user-menu .splms-user-dropdown-menu .splms-dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--splms-gray-700, #374151);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  font-weight: 500;
  position: relative;
}
.splms-user-menu .splms-user-dropdown-menu .splms-dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, var(--splms-primary, #3b82f6) 0%, var(--splms-primary-dark, #2563eb) 100%);
  transition: width 0.3s ease;
}
.splms-user-menu .splms-user-dropdown-menu .splms-dropdown-item:hover {
  background: var(--splms-primary-light, #eff6ff);
  color: var(--splms-primary, #3b82f6);
  border-left-color: var(--splms-primary, #3b82f6);
  transform: translateX(4px);
}
.splms-user-menu .splms-user-dropdown-menu .splms-dropdown-item:hover::before {
  width: 3px;
}
.splms-user-menu .splms-user-dropdown-menu .splms-dropdown-item:hover svg {
  color: var(--splms-primary, #3b82f6);
  transform: scale(1.15);
}
.splms-user-menu .splms-user-dropdown-menu .splms-dropdown-item:hover .splms-dropdown-item-text {
  font-weight: 600;
}
.splms-user-menu .splms-user-dropdown-menu .splms-dropdown-item:focus {
  outline: none;
}
.splms-user-menu .splms-user-dropdown-menu .splms-dropdown-item svg {
  color: var(--splms-gray-400, #9ca3af);
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.splms-user-menu .splms-user-dropdown-menu .splms-dropdown-item .splms-dropdown-item-text {
  transition: font-weight 0.2s ease;
}
.splms-user-menu .splms-user-dropdown-menu .splms-dropdown-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--splms-border, #e2e8f0) 50%, transparent 100%);
  margin: 0.5rem 1.5rem;
}
.splms-user-menu .splms-user-dropdown-menu .splms-logout-item:hover {
  background: var(--splms-red-50, #fef2f2);
  color: var(--splms-red-600, #dc2626);
  border-left-color: var(--splms-red-500, #ef4444);
}
.splms-user-menu .splms-user-dropdown-menu .splms-logout-item:hover::before {
  background: var(--splms-red-500, #ef4444);
}
.splms-user-menu .splms-user-dropdown-menu .splms-logout-item:hover svg {
  color: var(--splms-red-600, #dc2626);
}
@media (max-width: 768px) {
  .splms-user-menu {
    display: none;
  }
}

/* ========================================
   Mobile Menu Toggle
   ======================================== */
.splms-mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.splms-mobile-menu-toggle:hover {
  background: var(--splms-gray-100, #f3f4f6);
}
.splms-mobile-menu-toggle[aria-expanded=true] .splms-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.splms-mobile-menu-toggle[aria-expanded=true] .splms-hamburger-line:nth-child(2) {
  opacity: 0;
}
.splms-mobile-menu-toggle[aria-expanded=true] .splms-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.splms-mobile-menu-toggle .screen-reader-text {
  position: absolute;
  left: -9999px;
}
@media (max-width: 1024px) {
  .splms-mobile-menu-toggle {
    display: block;
  }
}

.splms-hamburger {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 20px;
}
.splms-hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--splms-gray-600, #6b7280);
  border-radius: 1px;
  transition: all 0.2s ease;
}

/* ========================================
   Mobile Menu
   ======================================== */
.splms-mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--splms-white, #ffffff);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}
.splms-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .splms-mobile-menu {
    display: block;
  }
}

.splms-mobile-menu-content {
  padding: 2rem;
  height: 100%;
  overflow-y: auto;
}
.splms-mobile-menu-content .splms-mobile-nav-menu {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}
.splms-mobile-menu-content .splms-mobile-nav-menu li {
  border-bottom: 1px solid var(--splms-border, #e2e8f0);
}
.splms-mobile-menu-content .splms-mobile-nav-menu li:last-child {
  border-bottom: none;
}
.splms-mobile-menu-content .splms-mobile-nav-menu li a {
  display: block;
  padding: 1rem 0;
  color: var(--splms-gray-700, #374151);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.125rem;
}
.splms-mobile-menu-content .splms-mobile-nav-menu li a:hover, .splms-mobile-menu-content .splms-mobile-nav-menu li a.current-menu-item {
  color: var(--splms-primary, #3b82f6);
}
.splms-mobile-menu-content .splms-mobile-user-actions,
.splms-mobile-menu-content .splms-mobile-auth-buttons {
  border-top: 1px solid var(--splms-border, #e2e8f0);
  padding-top: 2rem;
}
.splms-mobile-menu-content .splms-mobile-menu-item {
  display: block;
  padding: 0.75rem 0;
  color: var(--splms-gray-600, #6b7280);
  text-decoration: none;
  font-weight: 500;
}
.splms-mobile-menu-content .splms-mobile-menu-item:hover {
  color: var(--splms-primary, #3b82f6);
}
.splms-mobile-menu-content .splms-mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.splms-mobile-menu-content .splms-mobile-auth-buttons .splms-btn {
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.splms-mobile-menu-content .splms-mobile-auth-buttons .splms-btn.splms-btn-outline {
  color: var(--splms-primary, #3b82f6);
  border-color: var(--splms-primary, #3b82f6);
  background: transparent;
}
.splms-mobile-menu-content .splms-mobile-auth-buttons .splms-btn.splms-btn-outline:hover {
  background: var(--splms-primary, #3b82f6);
  color: var(--splms-white, #ffffff);
}
.splms-mobile-menu-content .splms-mobile-auth-buttons .splms-btn.splms-btn-primary {
  background: var(--splms-primary, #3b82f6);
  color: var(--splms-white, #ffffff);
}
.splms-mobile-menu-content .splms-mobile-auth-buttons .splms-btn.splms-btn-primary:hover {
  background: var(--splms-primary-dark, #2563eb);
}

/* ========================================
   Mobile Menu Overlay
   ======================================== */
.splms-mobile-menu-overlay {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.splms-mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1024px) {
  .splms-mobile-menu-overlay {
    display: block;
  }
}

/* ========================================
   Footer Styles
   ======================================== */
.splms-footer {
  background: var(--splms-gray-900, #111827);
  color: var(--splms-gray-300, #d1d5db);
  margin-top: auto;
}

.splms-footer-container {
  max-width: var(--splms-container-max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--splms-container-padding, 1rem);
}

/* ========================================
   Social Links
   ======================================== */
.splms-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.splms-social-links .splms-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--splms-gray-800, #1f2937);
  color: var(--splms-gray-400, #9ca3af);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.splms-social-links .splms-social-link:hover {
  background: var(--splms-primary, #3b82f6);
  color: var(--splms-white, #ffffff);
  transform: translateY(-2px);
}
.splms-social-links .splms-social-link svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   Footer Lists
   ======================================== */
.splms-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.splms-footer-list .splms-footer-list-item {
  margin-bottom: 0.75rem;
}
.splms-footer-list .splms-footer-list-item:last-child {
  margin-bottom: 0;
}
.splms-footer-list .splms-footer-link {
  color: var(--splms-gray-400, #9ca3af);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.splms-footer-list .splms-footer-link:hover {
  color: var(--splms-primary, #3b82f6);
}
.splms-footer-list .splms-footer-link .splms-category-count {
  color: var(--splms-gray-500, #6b7280);
  font-size: 0.875rem;
}

/* ========================================
   Contact Info
   ======================================== */
.splms-contact-info .splms-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.splms-contact-info .splms-contact-item:last-child {
  margin-bottom: 0;
}
.splms-contact-info .splms-contact-item svg {
  color: var(--splms-primary, #3b82f6);
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.splms-contact-info .splms-contact-link,
.splms-contact-info .splms-contact-text {
  color: var(--splms-gray-400, #9ca3af);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
}
.splms-contact-info .splms-contact-link:hover,
.splms-contact-info .splms-contact-text:hover {
  color: var(--splms-primary, #3b82f6);
}
.splms-contact-info .splms-contact-text {
  margin: 0;
}

/* ========================================
   Footer Bottom
   ======================================== */
.splms-footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--splms-gray-800, #1f2937);
}

.splms-footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .splms-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

.splms-footer-copyright p {
  margin: 0;
  color: var(--splms-gray-500, #6b7280);
  font-size: 0.875rem;
}

/* ========================================
   Legal Links
   ======================================== */
.splms-legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.splms-legal-links .splms-legal-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.splms-legal-links .splms-legal-link {
  color: var(--splms-gray-500, #6b7280);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.splms-legal-links .splms-legal-link:hover {
  color: var(--splms-primary, #3b82f6);
}
.splms-legal-links .splms-legal-separator {
  color: var(--splms-gray-600, #4b5563);
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .splms-legal-links {
    justify-content: center;
  }
}

/* ========================================
   Footer Responsive Adjustments
   ======================================== */
@media (max-width: 640px) {
  .splms-footer-main {
    padding: 2rem 0;
  }
  .splms-footer-row {
    gap: 2rem;
  }
  .splms-footer-widget .splms-footer-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  .splms-social-links .splms-social-link {
    width: 36px;
    height: 36px;
  }
  .splms-social-links .splms-social-link svg {
    width: 16px;
    height: 16px;
  }
  .splms-footer-bottom {
    padding: 1rem 0;
  }
  .splms-legal-links .splms-legal-link-item {
    gap: 0.5rem;
  }
  .splms-legal-links .splms-legal-separator {
    display: none;
  }
  .splms-legal-links .splms-legal-separator:last-child {
    display: inline;
  }
}
/* ========================================
   Footer Dark Mode Support
   ======================================== */
/* ========================================
   Footer Animation
   ======================================== */
.splms-footer-widget {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.splms-footer-widget:nth-child(1) {
  animation-delay: 0.1s;
}
.splms-footer-widget:nth-child(2) {
  animation-delay: 0.2s;
}
.splms-footer-widget:nth-child(3) {
  animation-delay: 0.3s;
}
.splms-footer-widget:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .splms-footer-widget {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .splms-social-link {
    transition: none;
  }
  .splms-social-link:hover {
    transform: none;
  }
}
/* ========================================
   Print Styles
   ======================================== */
@media print {
  .splms-footer {
    background: transparent;
    color: var(--splms-black, #000000);
    border-top: 1px solid var(--splms-black, #000000);
  }
  .splms-social-links,
  .splms-legal-links {
    display: none;
  }
  .splms-footer-main {
    padding: 1rem 0;
  }
  .splms-footer-bottom {
    padding: 0.5rem 0;
  }
}
.splms-activation-info, .splms-activation-success, .splms-activation-error {
  margin: 1rem 0;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.splms-activation-success {
  border-left: 4px solid #10b981;
  background: linear-gradient(135deg, #d1fae5 0%, #ffffff 100%);
  color: #10b981;
}
.splms-activation-error {
  border-left: 4px solid #e74c3c;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  color: #e74c3c;
}

.splms-user-info {
  flex-direction: column;
}
.splms-user-info h3 {
  margin: 0 0 1rem 0;
  color: #374151;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.splms-user-info h3::before {
  content: "👤";
  font-size: 1em;
}
.splms-user-info .splms-user-details-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.splms-user-info .splms-user-details-table td {
  padding: 0.5rem 1rem;
}
.splms-user-info .splms-user-details-table .splms-detail-label {
  font-weight: 600;
  color: #374151;
  text-align: left;
  font-size: 0.9rem;
}
.splms-user-info .splms-user-details-table .splms-detail-value {
  color: #475569;
  text-align: left;
  font-size: 0.9rem;
}
.splms-user-info .splms-user-details-table tr {
  border-bottom: 1px solid #f3f4f6;
}
.splms-user-info .splms-user-details-table tr:last-child {
  border-bottom: none;
}
.splms-user-info p {
  margin: 0.5rem 0;
  color: #475569;
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 0.95rem;
}
.splms-user-info p:last-child {
  margin-bottom: 0;
}
.splms-user-info p strong {
  color: #374151;
  font-weight: 600;
  min-width: 70px;
  margin-right: 0.75rem;
  display: inline-block;
}

.splms-resend-activation {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 8px;
  padding: 1.25rem;
}
.splms-resend-activation h3 {
  margin: 0 0 0.5rem 0;
  color: #374151;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.splms-resend-activation h3::before {
  content: "❓";
  font-size: 1em;
}
.splms-resend-activation p {
  color: #475569;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.splms-auth-btn {
  display: flex;
  width: 100%;
  background: #6366F1;
  padding: 9px 15px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid #6366F1;
  color: #FFFFFF;
  transition: all 0.3s ease;
}
.splms-auth-btn:active {
  transform: translateY(0);
}
.splms-auth-btn.splms-auth-btn-secondary {
  background-color: #f3f4f6;
  color: #374151;
  border-color: #d1d5db;
}
.splms-auth-btn.splms-auth-btn-secondary:hover {
  background-color: #e5e7eb;
  color: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.splms-auth-btn.splms-auth-btn-secondary:active {
  transform: translateY(0);
}

.splms-example-link {
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  padding: 0.75rem;
  margin: 0.5rem 0;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.85em;
  word-break: break-all;
  position: relative;
}
.splms-example-link::before {
  content: "🔗";
  position: absolute;
  top: -6px;
  left: 10px;
  background: #ffffff;
  padding: 0 4px;
  font-size: 0.7em;
}
.splms-example-link code {
  color: #374151;
  background: none;
  padding: 0;
  font-weight: 500;
}

.splms-message-content {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-direction: column;
}
.splms-message-content .splms-message-icon {
  font-size: 1.5em;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
  text-align: center;
}
.splms-message-content .splms-message-text {
  flex: 1;
}
.splms-message-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
}
.splms-message-content p {
  margin: 0.25rem 0;
  line-height: 1.5;
  color: inherit;
  font-size: 0.9rem;
}

.splms-form-messages {
  margin-top: 1rem;
}
.splms-form-messages .splms-form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border: 1px solid transparent;
  animation: slideIn 0.3s ease;
}
.splms-form-messages .splms-form-message.splms-form-success {
  background: #d1fae5;
  border-color: #10b981;
  color: #10b981;
}
.splms-form-messages .splms-form-message.splms-form-error {
  background: #fef2f2;
  border-color: #e74c3c;
  color: #e74c3c;
}

.splms-form-group {
  margin-bottom: 16px;
  position: relative;
}
.splms-form-group .splms-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 20px;
  color: #374151;
}

.splms-btn-loader {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.splms-btn-loader .splms-spinner {
  width: 1rem;
  height: 1rem;
  animation: spin 1s linear infinite;
}
.splms-btn-loader .splms-spinner-path {
  stroke-dasharray: 150, 200;
  stroke-dashoffset: -10;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@media (max-width: 768px) {
  .splms-activation-info, .splms-activation-success, .splms-activation-error {
    margin: 0.75rem 0;
    padding: 1.25rem;
  }
  .splms-user-info {
    padding: 1rem;
  }
  .splms-user-info p {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .splms-user-info p strong {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 0.125rem;
  }
  .splms-example-link {
    font-size: 0.8em;
    padding: 0.5rem;
    margin: 0.375rem 0;
  }
  .splms-resend-activation {
    margin-top: 1.25rem;
    padding: 1rem;
  }
  .splms-auth-btn {
    width: 100%;
    padding: 0.875rem 1.25rem;
  }
}

/*# sourceMappingURL=frontend.min.css.map */
