@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.paddingLayoutBodyInternal {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #cbd5e1;
	background-color: transparent;
	min-height: 100vh;
	padding-top: 30px !important;
	padding-bottom: 50px !important;
}

.paddingLayoutBodyInternal,
.header__container,
.paddingLayoutBody {
	padding-left: 15px !important;
	padding-right: 15px !important;
	max-width: 100% !important;
	margin: 0 auto !important;
}

@media (min-width: 768px) {
	.paddingLayoutBodyInternal,
	.header__container,
	.paddingLayoutBody {
		padding-left: 30px !important;
		padding-right: 30px !important;
	}
}

@media (min-width: 1200px) {
	.paddingLayoutBodyInternal,
	.header__container,
	.paddingLayoutBody {
		padding-left: 50px !important;
		padding-right: 50px !important;
		max-width: 1750px !important;
	}
}



.explore-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 35px;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 20px;
}

.explore-title {
	font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 2.2rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
	letter-spacing: -0.02em;
}

.explore-search-wrapper {
	position: relative;
	max-width: 380px;
	width: 100%;
	border-radius: 12px;
	background: #1e293b;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease;
}

.explore-search-wrapper:focus-within {
	border-color: #a855f7;
	box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.25);
}

.explore-search-input {
	width: 100%;
	border: none;
	background: transparent;
	padding: 12px 16px 12px 42px;
	font-size: 1.05rem;
	font-family: 'Source Sans Pro', sans-serif;
	color: #ffffff;
	outline: none;
	border-radius: 12px;
}

.explore-search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-size: 1.1rem;
	pointer-events: none;
}

.catalog-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media (min-width: 992px) {
	.catalog-layout {
		grid-template-columns: 260px 1fr;
	}
}

@media (min-width: 1200px) {
	.catalog-layout {
		grid-template-columns: 280px 1fr;
	}
}

/* New Borderless Sidebar Filters Styling */
.catalog-sidebar-new {
	background: transparent;
	align-self: start;
}

@media (min-width: 992px) {
	.catalog-sidebar-new {
		position: sticky;
		top: 90px;
		max-height: calc(100vh - 110px);
		overflow-y: auto;
		padding-right: 15px;
	}
	.catalog-sidebar-new::-webkit-scrollbar {
		width: 4px;
	}
	.catalog-sidebar-new::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.05);
		border-radius: 4px;
	}
	.catalog-sidebar-new:hover::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.15);
	}
}

.sidebar-filter-header-new {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-title-new {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.01em;
}

.filter-clear-link-new {
	font-size: 13px;
	font-weight: 600;
	color: #a855f7;
	text-decoration: none !important;
	transition: color 0.15s ease;
}

.filter-clear-link-new:hover {
	color: #c084fc;
}

.filter-group-new {
	margin-bottom: 28px;
}

.filter-group-new:last-of-type {
	margin-bottom: 0;
}

.filter-group-title-new {
	font-size: 12px;
	font-weight: 700;
	color: #94a3b8;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 14px;
}

.filter-group-search-new {
	position: relative;
	width: 100%;
	margin-bottom: 12px;
}

.filter-group-search-new input {
	width: 100%;
	background: #161f30;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #ffffff;
	padding: 8px 12px 8px 34px;
	border-radius: 8px;
	font-size: 13px;
	outline: none;
	transition: all 0.2s ease;
}

.filter-group-search-new input:focus {
	border-color: #a855f7;
	background: #1e293b;
}

.search-input-icon-new {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #64748b;
	font-size: 12px;
}

.filter-options-list-new {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 220px;
	overflow-y: auto;
	padding-right: 4px;
}

.filter-options-list-new::-webkit-scrollbar {
	width: 3px;
}
.filter-options-list-new::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 3px;
}

.filter-option-row-new {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.filter-checkbox {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.filter-checkbox-label-new {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	user-select: none;
	margin: 0;
}

.checkbox-custom-new {
	height: 18px;
	width: 18px;
	background-color: #161f30;
	border: 1.5px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	display: inline-block;
	position: relative;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.filter-checkbox-label-new:hover .checkbox-custom-new {
	border-color: rgba(255, 255, 255, 0.2);
	background-color: #1e293b;
}

.filter-checkbox-label-new input:checked ~ .checkbox-custom-new {
	background-color: #a855f7;
	border-color: #a855f7;
	box-shadow: 0 2px 8px rgba(168, 85, 247, 0.25);
}

.checkbox-custom-new::after {
	content: "";
	position: absolute;
	display: none;
}

.filter-checkbox-label-new input:checked ~ .checkbox-custom-new::after {
	display: block;
}

.filter-checkbox-label-new .checkbox-custom-new::after {
	left: 6px;
	top: 3px;
	width: 4px;
	height: 8px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-text-new {
	font-size: 13.5px;
	font-weight: 500;
	color: #cbd5e1;
	transition: color 0.15s ease;
}

.filter-checkbox-label-new:hover .checkbox-text-new {
	color: #ffffff;
}

.filter-checkbox:checked ~ .checkbox-text-new {
	color: #ffffff;
	font-weight: 600;
}

.category-filter-link-new {
	color: #64748b;
	transition: color 0.15s ease;
	font-size: 11px;
}

.category-filter-link-new:hover {
	color: #a855f7;
}

.active-filters-chips-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #1e293b;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #cbd5e1;
	font-size: 12px;
	font-weight: 500;
	padding: 4px 10px;
	border-radius: 8px;
}

.chip-remove {
	cursor: pointer;
	color: #94a3b8;
	font-size: 10px;
	transition: color 0.15s ease;
}

.chip-remove:hover {
	color: #ef4444;
}

.catalog-main {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.courses-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

@media (min-width: 600px) {
	.courses-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.courses-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.premium-course-card {
	background: #161f30;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.premium-course-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 20px -8px rgba(168, 85, 247, 0.2);
	border-color: #a855f7;
}

.card-image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #0f172a;
}

.card-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.premium-course-card:hover .card-image-wrapper img {
	transform: scale(1.04);
}

.card-content {
	padding: 18px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.card-badges-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.card-badge {
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: capitalize;
	display: inline-flex;
	align-items: center;
}

.card-badge-duration {
	font-size: 11.5px;
	font-weight: 600;
	color: #cbd5e1;
	display: flex;
	align-items: center;
	gap: 4px;
}

.card-course-title {
	font-size: 15.5px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.4;
	margin: 4px 0 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 44px;
}

.card-course-title a {
	color: inherit;
	text-decoration: none !important;
	transition: color 0.15s ease;
}

.premium-course-card:hover .card-course-title a {
	color: #a855f7;
}

.card-course-description {
	font-size: 12.5px;
	color: #cbd5e1;
	line-height: 1.5;
	margin: 0;
	text-align: justify;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 56px;
}

.card-footer-details {
	padding: 12px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #111827;
}

.card-author-info {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.card-author-img-wrapper {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	overflow: hidden;
	background: #0f172a;
	flex-shrink: 0;
}

.card-author-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-author-initials {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
	color: #ffffff;
	font-size: 9.5px;
	font-weight: 700;
	text-transform: uppercase;
}

.card-author-name {
	font-size: 12.5px;
	font-weight: 600;
	color: #cbd5e1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-price-value {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	flex-shrink: 0;
}

.no-courses-card {
	background: #161f30;
	border-radius: 16px;
	border: 2px dashed rgba(255, 255, 255, 0.15);
	padding: 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.no-courses-icon {
	font-size: 40px;
	color: #94a3b8;
	margin-bottom: 12px;
}

.no-courses-title {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 6px;
}

.no-courses-desc {
	font-size: 13.5px;
	color: #cbd5e1;
	max-width: 320px;
	margin-bottom: 16px;
}

.catalog-pagination-container {
	display: flex;
	justify-content: center;
	margin-top: 15px;
	width: 100%;
}

.divPagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: none !important;
	padding: 0 !important;
	text-align: center !important;
	background: transparent !important;
}

.divPagination .divPaginationPageNumber {
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	border-radius: 8px !important;
	background-color: #1e293b !important;
	color: #cbd5e1 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	width: 38px !important;
	height: 38px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	transition: all 0.2s ease !important;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

.divPagination .divPaginationPageNumber:hover {
	background-color: #111827 !important;
	border-color: rgba(255, 255, 255, 0.3) !important;
	color: #ffffff !important;
}

.divPagination .divPaginationPageNumber[style*="background-color"] {
	background-color: #a855f7 !important;
	border-color: #a855f7 !important;
	color: #ffffff !important;
	box-shadow: 0 4px 10px rgba(168, 85, 247, 0.25) !important;
}

.divPagination .divPaginationJump {
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	border-radius: 8px !important;
	background-color: #1e293b !important;
	color: #cbd5e1 !important;
	width: 38px !important;
	height: 38px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-decoration: none !important;
	transition: all 0.2s ease !important;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
	font-size: 0 !important;
}

.divPagination .divPaginationJump:hover {
	background-color: #111827 !important;
	border-color: rgba(255, 255, 255, 0.3) !important;
	color: #ffffff !important;
}

.divPagination span:first-child .divPaginationJump::before {
	content: "\f104";
	font-family: "FontAwesome" !important;
	font-size: 16px !important;
}

.divPagination span:last-child .divPaginationJump::before {
	content: "\f105";
	font-family: "FontAwesome" !important;
	font-size: 16px !important;
}

.divPagination span {
	display: inline-flex !important;
}

.catalog-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 15px;
	width: 100%;
}

.catalog-results-count {
	font-size: 14.5px;
	font-weight: 700;
	color: #cbd5e1;
}

.layout-toggle-buttons {
	display: flex;
	background: #0f172a;
	padding: 4px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-layout-toggle {
	background: transparent;
	border: none;
	color: #cbd5e1;
	width: 36px;
	height: 36px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-layout-toggle:hover {
	color: #ffffff;
}

.btn-layout-toggle.active {
	background: #a855f7;
	color: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.course-card-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
	margin-bottom: 8px;
}

.course-card-rating .rating-score {
	font-size: 13px;
	font-weight: 700;
	color: #b45309;
}

.course-card-rating .rating-stars {
	color: #ecc94b;
	font-size: 11px;
	display: flex;
	gap: 2px;
}

.card-info-wrapper {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.courses-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.courses-list .premium-course-card {
	flex-direction: row;
	height: auto;
	align-items: stretch;
	padding: 16px;
	gap: 20px;
	background: #161f30;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
	cursor: pointer;
}

.courses-list .premium-course-card .card-image-wrapper {
	width: 260px;
	height: auto;
	aspect-ratio: 16 / 9;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 8px;
}

.courses-list .premium-course-card .card-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.courses-list .premium-course-card .card-info-wrapper {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.courses-list .premium-course-card .card-content {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.courses-list .premium-course-card .card-course-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 2px 0;
	height: auto;
	display: block;
	line-height: 1.35;
}

.courses-list .premium-course-card .card-course-description {
	font-size: 13.5px;
	line-height: 1.5;
	color: #cbd5e1;
	margin: 2px 0 0 0;
	height: auto;
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.courses-list .premium-course-card .card-footer-details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
	border-top: none;
	background: transparent;
	padding: 0;
	margin-top: 8px;
}

.courses-list .premium-course-card .card-author-info {
	display: flex;
	align-items: center;
	gap: 0;
}

.courses-list .premium-course-card .card-author-img-wrapper {
	display: none;
}

.courses-list .premium-course-card .card-author-name {
	font-size: 13px;
	color: #cbd5e1;
	font-weight: 500;
}

.courses-list .premium-course-card .card-price-value {
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
}

.course-hover-modal {
	position: absolute;
	z-index: 10000;
	width: 340px;
	background: #111827;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	padding: 20px;
	pointer-events: none;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	transition: opacity 0.15s ease, transform 0.15s ease;
	opacity: 0;
	transform: scale(0.95);
}

.course-hover-modal.show {
	opacity: 1;
	transform: scale(1);
}

.hover-modal-badges {
	display: flex;
	gap: 8px;
	margin-bottom: 10px;
}

.hover-modal-badge {
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	text-transform: uppercase;
}

.hover-modal-badge.category-badge {
	background-color: #eff6ff;
	color: #9333ea;
}

.hover-modal-badge.level-badge {
	background-color: #1e293b;
	color: #cbd5e1;
}

.hover-modal-title {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.hover-modal-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}

.hover-modal-rating .rating-score {
	font-size: 13.5px;
	font-weight: 700;
	color: #fbbf24;
}

.hover-modal-rating .rating-stars {
	color: #ecc94b;
	font-size: 12px;
	display: flex;
	gap: 2px;
}

.hover-modal-meta {
	display: flex;
	gap: 15px;
	font-size: 12px;
	color: #cbd5e1;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 10px;
}

.hover-modal-meta .meta-item {
	display: flex;
	align-items: center;
	gap: 5px;
}

.hover-modal-desc {
	font-size: 13px;
	color: #cbd5e1;
	line-height: 1.5;
	margin-bottom: 15px;
	text-align: justify;
}

.hover-modal-objectives h5 {
	font-size: 12px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 8px 0;
}

.hover-modal-objectives .objectives-list {
	font-size: 12px;
	color: #cbd5e1;
	line-height: 1.4;
}

.hover-modal-footer {
	margin-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 10px;
	font-size: 12px;
	font-weight: 600;
	color: #a855f7;
	text-align: center;
}

.category-filter-link:hover {
	color: #9333ea !important;
}

.theme-light .explore-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-light .explore-title {
	color: #0f172a;
}

.theme-light .explore-search-wrapper {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.theme-light .explore-search-input {
	color: #0f172a;
}

.theme-light .explore-search-icon {
	color: #64748b;
}

body.theme-light .sidebar-filter-header-new {
	border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body.theme-light .filter-title-new {
	color: #0f172a !important;
}

body.theme-light .filter-group-title-new {
	color: #64748b !important;
}

body.theme-light .filter-group-search-new input {
	background: #ffffff !important;
	border-color: rgba(0, 0, 0, 0.08) !important;
	color: #0f172a !important;
}

body.theme-light .filter-group-search-new input:focus {
	border-color: #a855f7 !important;
	background: #f8fafc !important;
}

body.theme-light .checkbox-custom-new {
	background-color: #ffffff !important;
	border-color: rgba(0, 0, 0, 0.1) !important;
}

body.theme-light .filter-checkbox-label-new:hover .checkbox-custom-new {
	border-color: rgba(0, 0, 0, 0.2) !important;
	background-color: #f8fafc !important;
}

body.theme-light .filter-checkbox:checked ~ .checkbox-custom-new {
	background-color: #a855f7 !important;
	border-color: #a855f7 !important;
}

body.theme-light .checkbox-text-new {
	color: #475569 !important;
}

body.theme-light .filter-checkbox-label-new:hover .checkbox-text-new {
	color: #0f172a !important;
}

body.theme-light .filter-checkbox:checked ~ .checkbox-text-new {
	color: #0f172a !important;
}

body.theme-light .category-filter-link-new {
	color: #94a3b8 !important;
}

body.theme-light .category-filter-link-new:hover {
	color: #a855f7 !important;
}

.theme-light .filter-chip {
	background: #ffffff;
	border-color: rgba(0, 0, 0, 0.08);
	color: #475569;
}

.theme-light .chip-remove {
	color: #94a3b8;
}

.theme-light .chip-remove:hover {
	color: #ef4444;
}

.theme-light .premium-course-card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.theme-light .premium-course-card:hover {
	box-shadow: 0 12px 20px -8px rgba(168, 85, 247, 0.15);
	border-color: #a855f7;
}

.theme-light .card-image-wrapper {
	background: #f1f5f9;
}

.theme-light .card-course-title {
	color: #0f172a;
}

.theme-light .premium-course-card:hover .card-course-title a {
	color: #a855f7;
}

.theme-light .card-course-description {
	color: #475569;
}

.theme-light .card-badge-duration {
	color: #475569;
}

.theme-light .card-footer-details {
	background: #f8fafc;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-light .card-author-name {
	color: #475569;
}

.theme-light .card-price-value {
	color: #0f172a;
}

.theme-light .card-price-value[style*="#10b981"] {
	color: #10b981 !important;
}

.theme-light .no-courses-card {
	background: #ffffff;
	border: 2px dashed rgba(0, 0, 0, 0.15);
}

.theme-light .no-courses-icon {
	color: #64748b;
}

.theme-light .no-courses-title {
	color: #0f172a;
}

.theme-light .no-courses-desc {
	color: #475569;
}

.theme-light .divPaginationPageNumber {
	border: 1px solid rgba(0, 0, 0, 0.1) !important;
	background-color: #ffffff !important;
	color: #475569 !important;
	box-shadow: 0 1px 2px rgba(0,0,0,0.02) !important;
}

.theme-light .divPaginationPageNumber:hover {
	background-color: #f1f5f9 !important;
	color: #0f172a !important;
}

.theme-light .divPaginationPageNumber[style*="background-color"] {
	background-color: #a855f7 !important;
	border-color: #a855f7 !important;
	color: #ffffff !important;
}

.theme-light .divPaginationJump {
	border: 1px solid rgba(0, 0, 0, 0.1) !important;
	background-color: #ffffff !important;
	color: #475569 !important;
	box-shadow: 0 1px 2px rgba(0,0,0,0.02) !important;
}

.theme-light .divPaginationJump:hover {
	background-color: #f1f5f9 !important;
	color: #0f172a !important;
}

.theme-light .catalog-toolbar {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-light .catalog-results-count {
	color: #475569;
}

.theme-light .layout-toggle-buttons {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-light .btn-layout-toggle {
	color: #475569;
}

.theme-light .btn-layout-toggle:hover {
	color: #0f172a;
}

.theme-light .btn-layout-toggle.active {
	background: #a855f7;
	color: #ffffff;
}

.theme-light .courses-list .premium-course-card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-light .courses-list .premium-course-card .card-price-value {
	color: #0f172a;
}

.theme-light .courses-list .premium-course-card .card-price-value[style*="#10b981"] {
	color: #10b981 !important;
}

.theme-light .course-hover-modal {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.theme-light .hover-modal-title {
	color: #0f172a;
}

.theme-light .hover-modal-meta {
	color: #475569;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-light .hover-modal-desc {
	color: #475569;
}

.theme-light .hover-modal-objectives h5 {
	color: #0f172a;
}

.theme-light .hover-modal-objectives .objectives-list {
	color: #475569;
}

.theme-light .hover-modal-footer {
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}
