/* Course Content – Accordion (dark container, green completed) */
.lms-course-content-wrap {
    border-radius: 20px;
    margin-bottom: 27px;
}
.lms-course-content-heading {
    margin: 0 0 1em;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.lms-course-content-accordion {
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	padding: 30px;
}

.lms-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	    transition: 0.5s all;
	    margin-bottom: 17px;
}

.lms-accordion-item:last-child {
    border-bottom: none;
	margin-bottom:0;
}

.lms-accordion-header {
    width: 100%;
	font-family: "Heebo", Sans-serif;
    display: flex;
	    text-align: right;
    justify-content: space-between;
    background: transparent;
    border: none;
font-weight: 500;
font-size: 18px;
line-height: 25px;
	color:#fff;
    cursor: pointer;
    transition: background 0.2s ease;
	    border-bottom: 1px solid #FFFFFF66;
    padding: 4px;
    padding-bottom: 22px;
	    white-space: normal;

}

.lms-accordion-header:hover {
    background: rgba(255, 255, 255, 0.06);
}
button.lms-accordion-header:focus, button.lms-accordion-header:hover {
    background-color: #000;
}
.lms-accordion-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: 0;
    position: relative;
    transition: transform 0.25s ease;
}

.lms-accordion-icon::before,
.lms-accordion-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: transform 0.25s ease;
}

.lms-accordion-icon::before {
    width: 10px;
    height: 2px;
    left: 50%;
    top: 50%;
    margin: -1px 0 0 -5px;
}

.lms-accordion-icon::after {
    width: 2px;
    height: 10px;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -1px;
}

.lms-accordion-open .lms-accordion-icon::after {
    transform: rotate(90deg);
}

.lms-accordion-content {
    background: #1a1a1a;
}

.lms-accordion-content[hidden] {
    display: none;
}

.lms-lesson-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lms-lesson-row {
	background-color: #000000;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #FFFFFF1A;
    padding: 20px 0;
}

.lms-lesson-row:last-child {
    border-bottom: none;
}

.lms-lesson-inner {
	font-family: "Heebo", Sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.lms-lesson-link {
    text-decoration: none;
    transition: background 0.2s ease;
}

.lms-lesson-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.lms-lesson-text {
	font-family: "Heebo", Sans-serif;
    flex: 1;
    font-size: 18px;
    font-weight: 400;
}

.lms-lesson-status {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    margin-left: 12px;
    border: 4px solid #15C83C;
    border-radius: 50%;
    background: #fff;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.lms-accordion-item.lms-accordion-open {
    margin-bottom: 24px;
	    transition: 0.5s all;
}
.lms-accordion-item.lms-accordion-open:last-child {
    margin-bottom: -16px;
}
.lms-lesson-completed .lms-lesson-status {
    background: #fff;
    border-color: #15C83C;
}
.lms-course-content-empty {
    margin: 1em 0;
    color: #666;
}
