/* CSS cho phần hiển thị nội dung khóa học giống Ignite Pro Talent */
.course-content-container {
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 0;
    background-color: transparent;
}

.course-modules {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Style cho từng module dạng card */
.course-module {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    padding: 20px;
    padding-left: 60px;
    border-left: 4px solid #0d6efd;
    transition: all 0.3s ease;
}

.course-module:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Style cho tiêu đề module */
.module-title {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    position: relative;
}

/* Style cho số thứ tự */
.module-number {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -40px;
    width: 30px;
    height: 30px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Style cho nội dung module */
.module-content {
    margin-top: 10px;
}

/* Style cho danh sách */
.module-content ul {
    margin-left: 0;
    padding-left: 20px;
    margin-bottom: 15px;
    list-style-type: disc;
}

.module-content ul li {
    margin-bottom: 8px;
    position: relative;
}

.module-content p {
    margin-bottom: 10px;
}

/* Style cho session cards như trong AI Agent Course */
.session-cards .course-module {
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 5px solid var(--accent-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.session-cards .course-module:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.session-cards .module-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--accent-primary);
    color: white;
    border-radius: 50%;
    margin-right: 0.75rem;
    font-weight: bold;
}

/* Styling cho session cards trong trang chi tiết khóa học */
.session-card {
    margin-bottom: 20px;
    border-left: 4px solid #0d6efd;
    position: relative;
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.session-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.session-card h4 {
    color: #0d6efd;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
}

.session-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
}

.session-text {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.session-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.session-list li {
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
}

.session-list li:before {
    content: "•";
    color: #0d6efd;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}