.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f4f4f4;
}

.container h1 {
	text-align: center;
	margin-bottom: 30px;
}
.creator-lms-course-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}
@media (max-width: 1024px) {
	.creator-lms-course-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 768px) {
	.creator-lms-course-cards {
		grid-template-columns: 1fr;
	}
}
.course-card {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 20px;
	display: flex;
	flex-direction: column;
}
.creator-lms-loop-course-link {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
	text-decoration: none;
}
.creator-lms-loop-course-link:hover {
	text-decoration: underline;
}
.course-info {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.difficulty {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 0.8rem;
	color: #fff;
	margin-bottom: 10px;
}
.beginner { background-color: #4caf50; }
.intermediate { background-color: #ff9800; }
.advanced { background-color: #f44336; }
.duration, .price {
	margin-bottom: 5px;
}
.price {
	font-size: 1.2rem;
	font-weight: bold;
	margin-top: auto;
}
.sale-price {
	color: #e53935;
}
.regular-price {
	text-decoration: line-through;
	color: #757575;
	font-size: 1rem;
	font-weight: normal;
	margin-left: 5px;
}
.enroll-button {
	display: inline-block;
	background-color: #4CAF50;
	color: white;
	padding: 10px 15px;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	border-radius: 4px;
	transition: background-color 0.3s;
	margin-top: 15px;
}
.enroll-button:hover {
	background-color: #45a049;
}
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}
.pagination .page-numbers {
	color: #333;
	padding: 8px 16px;
	text-decoration: none;
	transition: background-color 0.3s;
	border: 1px solid #ddd;
	margin: 0 4px;
}
.pagination .page-numbers.current {
	background-color: #4CAF50;
	color: white;
	border: 1px solid #4CAF50;
}
.pagination .page-numbers:hover:not(.current) {
	background-color: #ddd;
}
.pagination .next {
	font-size: 1.2em;
}


/* Reset and base styles */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
}

.course-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Course header */
.course-header {
	background-color: #2c3e50;
	color: #fff;
	padding: 40px;
}

.course-header h1 {
	font-size: 2.5rem;
	margin: 0 0 10px;
	color: #fff;
}

.course-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 20px;
}

.course-rating {
	display: flex;
	align-items: center;
}

.star {
	color: #f1c40f;
	margin-right: 5px;
}

/* Main content */
.course-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
}

.main-content {
	flex: 1;
	min-width: 300px;
}

.sidebar {
	width: 300px;
}

/* Course sections */
.course-section {
	background-color: #fff;
	border-radius: 8px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.course-section h2 {
	font-size: 1.8rem;
	margin-top: 0;
	margin-bottom: 20px;
}

/* What you'll learn section */
.learn-list {
	list-style-type: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
}

.learn-list li {
	display: flex;
	align-items: flex-start;
}

.learn-list li::before {
	content: "✓";
	margin-right: 10px;
	color: #27ae60;
}

/* Course content section */
.content-list {
	list-style-type: none;
	padding: 0;
}

.content-item {
	background-color: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 4px;
	padding: 15px;
	margin-bottom: 10px;
}

.content-item h3 {
	margin: 0 0 10px;
}

/* Requirements section */
.requirements-list {
	padding-left: 20px;
}

/* Sidebar */
.course-sidebar {
	background-color: #fff;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 20px;
}

.course-image {
	width: 100%;
	border-radius: 8px;
	margin-bottom: 20px;
}

.course-price {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 20px;
}

.course-price .free {
	color: #27ae60;
}

.course-price del {
	color: #7f8c8d;
	font-size: 1.5rem;
	text-decoration: line-through;
	margin-right: 10px;
}

.course-price ins {
	color: #e74c3c;
	text-decoration: none;
}

.course-price bdi {
	font-style: normal;
}

.enroll-button {
	display: block;
	width: 100%;
	padding: 15px;
	background-color: #3498db;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 4px;
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 20px;
	transition: background-color 0.3s ease;
}

.enroll-button:hover {
	background-color: #2980b9;
}

.course-features {
	list-style-type: none;
	padding: 0;
}

.course-features li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.course-features li::before {
	content: "•";
	margin-right: 10px;
	color: #3498db;
}

/* Responsive design */
@media (max-width: 768px) {
	.course-content {
		flex-direction: column;
	}

	.sidebar {
		width: 100%;
	}

	.course-sidebar {
		position: static;
	}
}
