.course-card {
    width: 100%;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}
.course-card-wrapper {
    padding: 20px;    
}
.course-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.course-icon img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
}
.course-title h2 {
    margin: 0;
    font-size: 14px;
    color: #888;
}
.course-title h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 10px 0;
    position: relative;
}
.progress-fill {
    height: 100%;
    border-radius: 5px;
}
.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    gap: 8%;
}
.lesson-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lesson-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #333;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
}
.lesson-list a {
    text-decoration: none;
}
.progress-circle-container {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 22px;
}
.lcp-lesson-title {
    flex: 1;
}
.progress-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.checkmark-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkmark-container span {
    font-size: 18px;
    color: #fff;
}
.lcp-progress-percentage {
    margin-left: auto;
}
.lcp-tick {
    width: 13px;
    height: 6px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(-46deg);
    margin-bottom: 4px;
}  