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

.course-player-container {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #cbd5e1;
	line-height: 1.5;
}

.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;
	}
}

.course-player-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-top: 20px;
}

@media (min-width: 992px) {
	.course-player-container {
		grid-template-columns: 2fr 1fr;
	}
}

@media (min-width: 1200px) {
	.course-player-container {
		grid-template-columns: 2.4fr 0.8fr;
	}
}

.player-main-area {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.player-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #0f172a;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.player-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.player-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	color: #f8fafc;
	padding: 30px;
	text-align: center;
}

.player-placeholder-icon {
	font-size: 56px;
	color: #a855f7;
	margin-bottom: 15px;
	animation: pulse 2s infinite ease-in-out;
}

.player-placeholder-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
	max-width: 500px;
}

.player-placeholder-text {
	font-size: 14px;
	color: #94a3b8;
	max-width: 400px;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.05); opacity: 0.8; }
}

.player-tabs {
	background: #111827;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.player-tabs-header {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	background: #0f172a;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	overflow-x: auto;
	scrollbar-width: none;
}

.player-tabs-header::-webkit-scrollbar {
	display: none;
}

.player-tab-btn {
	padding: 16px 24px;
	font-weight: 600;
	font-size: 14px;
	color: #94a3b8;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: all 0.2s ease;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 8px;
}

.player-tab-btn:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.05);
}

.player-tab-btn.active {
	color: #a855f7;
	border-bottom-color: #a855f7;
	background: #111827;
}

.player-tab-btn i {
	font-size: 16px;
}

.player-tabs-body {
	padding: 24px;
}

.player-tab-pane {
	display: none;
}

.player-tab-pane.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

.lesson-title-main {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
}

.lesson-desc {
	color: #cbd5e1;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.course-sidebar {
	background: #111827;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	max-height: 700px;
}

.sidebar-header {
	padding: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: #0f172a;
	border-radius: 16px 16px 0 0;
}

.sidebar-title {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
	text-transform: none;
}

.sidebar-progress-container {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sidebar-progress-text {
	font-size: 13px;
	font-weight: 500;
	color: #cbd5e1;
	display: flex;
	justify-content: space-between;
}

.sidebar-progress-bar-bg {
	height: 6px;
	background: #1e293b;
	border-radius: 10px;
	overflow: hidden;
}

.sidebar-progress-bar-fill {
	height: 100%;
	background: #10b981;
	border-radius: 10px;
	width: 0%;
	transition: width 0.4s ease;
}

.lesson-list-scroll {
	flex-grow: 1;
	overflow-y: auto;
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.lesson-row-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	background: #161f30;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	user-select: none;
}

.lesson-row-card:hover {
	border-color: #cbd5e1;
	background: #1e293b;
	transform: translateY(-1px);
}

.lesson-row-card.active {
	border-color: #a855f7;
	background: #1f293d;
	box-shadow: 0 4px 12px -2px rgba(168, 85, 247, 0.25);
}

.lesson-card-status-circle {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	background: #1e293b;
	color: #cbd5e1;
	border: 1.5px solid rgba(255, 255, 255, 0.15);
	transition: all 0.2s ease;
}

.lesson-row-card.active .lesson-card-status-circle {
	background: #a855f7;
	color: #ffffff;
	border-color: #a855f7;
	box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
}

.lesson-row-card.completed .lesson-card-status-circle {
	background: #064e3b;
	color: #34d399;
	border-color: #047857;
}

.lesson-card-details {
	flex-grow: 1;
	min-width: 0;
}

.lesson-card-title {
	font-size: 13.5px;
	font-weight: 600;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 2px;
}

.lesson-row-card.active .lesson-card-title {
	color: #ffffff;
}

.lesson-card-meta {
	font-size: 11px;
	color: #cbd5e1;
	display: flex;
	align-items: center;
	gap: 8px;
}

.lesson-row-card.active .lesson-card-meta {
	color: #c084fc;
}

.lesson-meta-badge {
	background: #1e293b;
	color: #cbd5e1;
	padding: 1px 6px;
	border-radius: 4px;
	font-size: 9.5px;
	font-weight: 600;
}

.lesson-row-card.active .lesson-meta-badge {
	background: #1e3a8a;
	color: #c084fc;
}

.lesson-card-status-circle i {
	font-size: 11px;
}

.sidebar-footer-btn-container {
	padding: 15px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: #0f172a;
	border-radius: 0 0 16px 16px;
}

.btn-sidebar-next {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px;
	background: #a855f7;
	color: #ffffff;
	border-radius: 10px;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(168, 85, 247, 0.25);
	transition: all 0.2s ease;
}

.btn-sidebar-next:hover {
	background: #9333ea;
	box-shadow: 0 4px 14px rgba(147, 51, 234, 0.4);
	transform: translateY(-1px);
}

.btn-sidebar-next:active {
	transform: translateY(0);
}

.evaluation-lock-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px;
	background: #161f30;
	border: 2px dashed rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	margin-top: 10px;
}

.evaluation-lock-icon-container {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #2c1d0f;
	color: #fbbf24;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 16px;
}

.evaluation-lock-title {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
}

.evaluation-lock-desc {
	font-size: 14px;
	color: #cbd5e1;
	max-width: 420px;
	margin-bottom: 20px;
	line-height: 1.5;
}

.btn-unlock-pago {
	background: #a855f7;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
	box-shadow: 0 4px 10px rgba(168, 85, 247, 0.25);
}

.btn-unlock-pago:hover {
	background: #9333ea;
}

.files-download-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
}

.file-download-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	background: #161f30;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	transition: all 0.2s ease;
}

.file-download-card:hover {
	border-color: #a855f7;
	background: #1e293b;
}

.file-card-left {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.file-card-icon {
	font-size: 20px;
	color: #dc2626;
	flex-shrink: 0;
}

.file-card-name {
	font-size: 13.5px;
	font-weight: 500;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.btn-file-download {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
	background: #a855f7;
	padding: 6px 12px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-file-download:hover {
	background: #9333ea;
	color: #ffffff;
	text-decoration: none;
}

.payment-info-box {
	background: #022c22;
	border: 1px solid rgba(16, 185, 129, 0.25);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 20px;
}

.payment-info-title {
	font-size: 15px;
	font-weight: 700;
	color: #34d399;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.payment-info-table {
	width: 100%;
	margin-bottom: 15px;
	border-collapse: collapse;
}

.payment-info-table td {
	padding: 8px 12px;
	border: 1px solid rgba(16, 185, 129, 0.15);
	font-size: 13px;
}

.payment-info-table tr:nth-child(even) {
	background: #02201a;
}

.payment-desc-text {
	font-size: 13.5px;
	color: #cbd5e1;
	margin-bottom: 12px;
	line-height: 1.5;
}

.voucher-upload-zone {
	border: 2px dashed rgba(255, 255, 255, 0.15);
	background: #161f30;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
}

.voucher-upload-zone:hover {
	border-color: #a855f7;
	background: #1e293b;
}

.voucher-upload-icon {
	font-size: 28px;
	color: #64748b;
	margin-bottom: 8px;
}

.voucher-upload-zone.has-file .voucher-upload-icon {
	color: #10b981;
}

.link-custom-decoration {
	color: #a855f7 !important;
	font-weight: 600;
	text-decoration: underline !important;
}
.link-custom-decoration:hover {
	color: #c084fc !important;
}

.alert-premium {
	border: none;
	border-radius: 12px;
	padding: 16px 20px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.alert-premium-info {
	background-color: #0c1c38;
	border-left: 5px solid #a855f7;
	color: #c084fc;
}
.alert-premium-danger {
	background-color: #3b1111;
	border-left: 5px solid #ef4444;
	color: #fca5a5;
}

.topicTitle {
	display: none !important;
}

#accordion {
	display: none !important;
}

.course-see-header {
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 20px;
}

.course-see-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 0 10px 0;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.course-see-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1rem;
	color: #cbd5e1;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.meta-item i {
	color: #64748b;
	font-size: 1.1rem;
}

.meta-item.live-indicator {
	color: #a855f7;
	font-weight: 600;
}
.meta-item.live-indicator i {
	color: #a855f7;
}

.recommended-courses-section {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.recommended-section-title {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 24px;
}

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

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

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

.recommended-courses-section .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);
}

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

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

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

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

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

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

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

.recommended-courses-section .card-badge {
	padding: 3px 8px;
	border-radius: 6px;
	font-size: 10.5px;
	font-weight: 700;
	text-transform: capitalize;
}

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

.recommended-courses-section .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;
}

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

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

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

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

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

.recommended-courses-section .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;
}

.recommended-courses-section .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;
}

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

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

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

.recommended-courses-section .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;
}

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

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

body.theme-light .course-player-container {
	color: #334155 !important;
}

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

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

body.theme-light .course-see-meta {
	color: #475569 !important;
}

body.theme-light .meta-item i {
	color: #64748b !important;
}

body.theme-light .player-wrapper {
	border-color: rgba(0, 0, 0, 0.08) !important;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08) !important;
}

body.theme-light .player-tabs {
	background: #ffffff !important;
	border-color: rgba(0, 0, 0, 0.08) !important;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

body.theme-light .player-tabs-header {
	background: #f8fafc !important;
	border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body.theme-light .player-tab-btn {
	color: #64748b !important;
}

body.theme-light .player-tab-btn:hover {
	color: #0f172a !important;
	background: rgba(0, 0, 0, 0.03) !important;
}

body.theme-light .player-tab-btn.active {
	color: #a855f7 !important;
	background: #ffffff !important;
	border-bottom-color: #a855f7 !important;
}

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

body.theme-light .lesson-desc {
	color: #334155 !important;
}

body.theme-light .player-tabs-body h4 {
	color: #0f172a !important;
}

body.theme-light #divScoreContent {
	background: #f8fafc !important;
	border-color: rgba(0, 0, 0, 0.08) !important;
	color: #0f172a !important;
}

body.theme-light .course-sidebar {
	background: #ffffff !important;
	border-color: rgba(0, 0, 0, 0.08) !important;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
}

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

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

body.theme-light .sidebar-progress-text {
	color: #475569 !important;
}

body.theme-light .sidebar-progress-bar-bg {
	background: #e2e8f0 !important;
}

body.theme-light .lesson-row-card {
	background: #f8fafc !important;
	border-color: rgba(0, 0, 0, 0.08) !important;
}

body.theme-light .lesson-row-card:hover {
	background: #f1f5f9 !important;
	border-color: #cbd5e1 !important;
}

body.theme-light .lesson-row-card.active {
	background: #f3e8ff !important;
	border-color: #a855f7 !important;
	box-shadow: 0 4px 12px -2px rgba(168, 85, 247, 0.15) !important;
}

body.theme-light .lesson-card-status-circle {
	background: #e2e8f0 !important;
	color: #475569 !important;
	border-color: rgba(0, 0, 0, 0.1) !important;
}

body.theme-light .lesson-row-card.active .lesson-card-status-circle {
	background: #a855f7 !important;
	color: #ffffff !important;
	border-color: #a855f7 !important;
}

body.theme-light .lesson-row-card.completed .lesson-card-status-circle {
	background: #dcfce7 !important;
	color: #15803d !important;
	border-color: #bbf7d0 !important;
}

body.theme-light .lesson-card-title {
	color: #1e293b !important;
}

body.theme-light .lesson-row-card.active .lesson-card-title {
	color: #0f172a !important;
}

body.theme-light .lesson-card-meta {
	color: #64748b !important;
}

body.theme-light .lesson-row-card.active .lesson-card-meta {
	color: #7e22ce !important;
}

body.theme-light .lesson-meta-badge {
	background: #e2e8f0 !important;
	color: #475569 !important;
}

body.theme-light .lesson-row-card.active .lesson-meta-badge {
	background: #d8b4fe !important;
	color: #7e22ce !important;
}

body.theme-light .sidebar-footer-btn-container {
	background: #f8fafc !important;
	border-top-color: rgba(0, 0, 0, 0.08) !important;
}

body.theme-light .file-download-card {
	background: #f8fafc !important;
	border-color: rgba(0, 0, 0, 0.08) !important;
}

body.theme-light .file-download-card:hover {
	background: #f1f5f9 !important;
	border-color: #a855f7 !important;
}

body.theme-light .file-card-name {
	color: #0f172a !important;
}

body.theme-light .evaluation-lock-card {
	background: #fdfbf7 !important;
	border-color: rgba(217, 119, 6, 0.2) !important;
}

body.theme-light .evaluation-lock-icon-container {
	background: #fef3c7 !important;
	color: #d97706 !important;
}

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

body.theme-light .evaluation-lock-desc {
	color: #475569 !important;
}

body.theme-light .payment-info-box {
	background: #f0fdf4 !important;
	border-color: rgba(16, 185, 129, 0.3) !important;
}

body.theme-light .payment-info-title {
	color: #15803d !important;
}

body.theme-light .payment-info-table td {
	border-color: rgba(16, 185, 129, 0.15) !important;
	color: #14532d !important;
}

body.theme-light .payment-info-table tr:nth-child(even) {
	background: rgba(16, 185, 129, 0.04) !important;
}

body.theme-light .payment-desc-text {
	color: #334155 !important;
}

body.theme-light .voucher-upload-zone {
	border-color: rgba(0, 0, 0, 0.12) !important;
	background: #f8fafc !important;
}

body.theme-light .voucher-upload-zone:hover {
	border-color: #a855f7 !important;
	background: #f1f5f9 !important;
}

body.theme-light .voucher-upload-zone #upload-text-main {
	color: #1e293b !important;
}

body.theme-light .text-muted {
	color: #64748b !important;
}

body.theme-light .table-bordered {
	border-color: rgba(0, 0, 0, 0.08) !important;
}

body.theme-light .table-bordered th,
body.theme-light .table-bordered td {
	border-color: rgba(0, 0, 0, 0.08) !important;
	color: #334155 !important;
}

body.theme-light .table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, 0.02) !important;
}

body.theme-light .table-striped tbody tr:nth-of-type(even) {
	background-color: transparent !important;
}

body.theme-light .table tr.info th,
body.theme-light .table tr.info td,
body.theme-light .table tr th {
	background-color: #f1f5f9 !important;
	color: #0f172a !important;
}

body.theme-light .link-custom-decoration:hover {
	color: #7e22ce !important;
}

body.theme-light .alert-premium-info {
	background-color: #f3e8ff !important;
	border-left-color: #a855f7 !important;
	color: #6b21a8 !important;
}

body.theme-light .alert-premium-danger {
	background-color: #fee2e2 !important;
	border-left-color: #ef4444 !important;
	color: #991b1b !important;
}

body.theme-light .recommended-courses-section {
	border-top-color: rgba(0, 0, 0, 0.08) !important;
}

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

body.theme-light .recommended-courses-section .premium-course-card {
	background: #ffffff !important;
	border-color: rgba(0, 0, 0, 0.08) !important;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

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

body.theme-light .recommended-courses-section .card-course-title {
	color: #0f172a !important;
}

body.theme-light .recommended-courses-section .card-course-title a {
	color: #0f172a !important;
}

body.theme-light .recommended-courses-section .card-course-title a:hover {
	color: #a855f7 !important;
}

body.theme-light .recommended-courses-section .card-course-description {
	color: #475569 !important;
}

body.theme-light .recommended-courses-section .card-footer-details {
	background: #f8fafc !important;
	border-top-color: rgba(0, 0, 0, 0.08) !important;
}

body.theme-light .recommended-courses-section .card-author-name {
	color: #475569 !important;
}

body.theme-light .recommended-courses-section .card-price-value {
	color: #0f172a !important;
}

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

body.theme-light .recommended-courses-section .card-badge-duration {
	color: #475569 !important;
}