:root {
    --darsineh-radius: 12px;
    --darsineh-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --darsineh-border: #e2e8f0;
    --darsineh-bg-light: #f8fafc;
    --darsineh-white: #ffffff;
    --darsineh-text-muted: #64748b;
}

.darsineh-lms-lesson-wrapper {
    max-width: 1300px;
    margin: 40px auto;
    font-family: inherit;
    color: var(--darsineh-text, #1e293b);
    direction: rtl;
}

.darsineh-lms-lesson-wrapper * {
    box-sizing: border-box;
}

.darsineh-lms-lesson-wrapper a,
.darsineh-course-curriculum a,
.darsineh-pc-wrapper a,
.darsineh-dashboard-wrapper a,
a.darsineh-pc-preview-btn,
a.darsineh-nav-btn,
a.darsineh-attachment-btn,
a.darsineh-btn-start {
    text-decoration: none !important;
    box-shadow: none !important;
}

.darsineh-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--darsineh-text-muted);
}

.darsineh-breadcrumbs a {
    color: var(--darsineh-text-muted);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.darsineh-breadcrumbs a:hover {
    color:#01B3B9);
}

.darsineh-breadcrumbs .sep {
    color: #ccc;
    display: flex;
    align-items: center;
    transform: rotate(180deg);
}

.darsineh-breadcrumbs .current {
    font-weight: 700;
    color: var(--darsineh-text, #1e293b);
}

.darsineh-box-style {
    background: transparent;
}

.darsineh-video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: var(--darsineh-radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    direction: ltr !important;
}

.darsineh-video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
}

#darsineh-loading-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.darsineh-spinner {
    width: 45px;
    height: 45px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.darsineh-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.darsineh-video-wrapper:hover .darsineh-play-overlay,
.darsineh-video-wrapper.paused .darsineh-play-overlay {
    opacity: 1;
}

.darsineh-big-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s, background 0.2s;
}

.darsineh-big-play-btn:hover {
    transform: scale(1.1);
    background:#01B3B9);
    border-color: transparent;
}

.darsineh-autoplay-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(10px);
}

.darsineh-autoplay-overlay.active {
    display: flex;
}

.darsineh-autoplay-box {
    text-align: center;
}

.up-next-label {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-lesson-title {
    font-size: 18px;
    margin: 0 0 25px 0;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
}

.timer-circle {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke:#01B3B9);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}

#darsineh-countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 1.4rem;
}

.btn-cancel {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: #fff !important;
    color: #000 !important;
}

.darsineh-controls-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 0 15px 15px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 15;
}

.darsineh-video-wrapper:hover .darsineh-controls-bar,
.darsineh-video-wrapper.paused .darsineh-controls-bar {
    opacity: 1;
}

.darsineh-seek-wrapper {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.darsineh-progress-range {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: height 0.1s;
    position: relative;
    padding: 0;
    margin: 0;
    border: none !important;
}

.darsineh-seek-wrapper:hover .darsineh-progress-range {
    height: 6px;
}

.darsineh-progress-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0px !important;
    height: 0px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: scale(0) !important;
}

.darsineh-seek-wrapper:hover .darsineh-progress-range::-webkit-slider-thumb {
    transform: scale(0) !important;
    margin-top: -4px;
}

.darsineh-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.darsineh-controls-left,
.darsineh-controls-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.darsineh-btn-control {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    width: 36px;
    height: 36px;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, transform 0.1s;
}

.darsineh-btn-control:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: scale(1.05);
    color:#01B3B9) !important;
}

.darsineh-btn-control svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

.darsineh-volume-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 5px;
}

.darsineh-volume-container {
    width: 0;
    overflow: hidden;
    transition: width 0.2s ease;
    display: flex;
    align-items: center;
}

.darsineh-volume-wrapper:hover .darsineh-volume-container {
    width: 70px;
    margin-left: 8px;
}

.darsineh-volume-slider {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    -webkit-appearance: none;
    border-radius: 2px;
    direction: ltr !important;
}

.darsineh-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
}

.darsineh-time-display {
    font-size: 13px;
    color: #eee;
    margin-left: 10px;
    font-variant-numeric: tabular-nums;
    font-weight: 500;
	line-height: 0;
    margin-top: 1px;
}

.darsineh-settings-menu {
    position: absolute;
    bottom: 60px;
    right: 15px;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 140px;
    display: none;
    z-index: 25;
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.darsineh-settings-menu.active {
    display: block;
    animation: slideUp 0.2s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.darsineh-menu-header {
    padding: 8px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: #bbb;
    font-size: 12px;
    text-transform: uppercase;
	text-align: center;
}

.darsineh-menu-item {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    font-size: 13px;
}

.darsineh-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.darsineh-menu-item.selected {
    color: #01B3B9);
    font-weight: 700;
}

.darsineh-lesson-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.darsineh-info-title-group {
    flex: 1;
    min-width: 300px;
}

.darsineh-course-tag {
    display: inline-block;
    font-size: 0.8rem;
    color:#01B3B9);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    background: rgba(34, 113, 177, 0.08);
    background: color-mix(in srgb, var(--darsineh-primary, #01B3B9), transparent 92%);
    padding: 4px 10px;
    border-radius: 4px;
	margin-top: 15px;
}

.darsineh-lesson-h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    color: var(--darsineh-text, #1e293b);
}

.darsineh-info-actions-group {
    display: flex;
    gap: 12px;
}

.darsineh-action-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    gap: 8px;
    line-height: 1;
}

.darsineh-action-chip.prev-btn {
    background: transparent !important;
    border: 1px solid var(--darsineh-border) !important;
    color: var(--darsineh-text, #1e293b) !important;
}

.darsineh-action-chip.prev-btn:hover:not(.disabled) {
    background: var(--darsineh-bg-light) !important;
    border-color: #ccc !important;
}

.darsineh-action-chip.next-btn {
    background: var(--darsineh-text, #1e293b) !important;
    border: 1px solid var(--darsineh-text, #1e293b) !important;
    color: var(--darsineh-white) !important;
}

.darsineh-action-chip.next-btn:hover:not(.disabled) {
    background:#01B3B9) !important;
    border-color: var(--darsineh-primary, #01B3B9) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.darsineh-action-chip.download-btn {
    background: var(--darsineh-bg-light) !important;
    border: 1px dashed #01B3B9) !important;
    color: #01B3B9) !important;
}

.darsineh-action-chip.download-btn:hover {
    background:#01B3B9) !important;
    color: #fff !important;
    border-style: solid !important;
}

.darsineh-action-chip.disabled {
    opacity: 0.5;
    cursor: default;
    background: #f9f9f9 !important;
    border-color: #eee !important;
    color: #999 !important;
}

.darsineh-action-chip svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

[dir="rtl"] .darsineh-action-chip.prev-btn svg,
[dir="rtl"] .darsineh-action-chip.next-btn svg {
    transform: scaleX(-1);
}

.darsineh-lesson-text {
    font-size: var(--darsineh-font-size, 16px);
    line-height: 1.8;
    color: var(--darsineh-text, #1e293b);
}

@media (max-width: 768px) {
    .darsineh-lms-lesson-wrapper {
        margin-top: 20px;
    }

    .darsineh-btn-control {
        width: 28px;
        height: 28px;
        padding: 5px;
    }

    .darsineh-controls-row {
        gap: 5px;
    }

    .darsineh-lesson-info-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .darsineh-info-title-group {
        width: 100%;
    }

    .darsineh-lesson-h1 {
        font-size: 1.4rem;
    }

    .darsineh-info-actions-group {
        width: 100%;
        display: flex;
        gap: 8px;
        justify-content: space-between;
    }

    .darsineh-action-chip {
        flex: 1;
        height: 40px;
        padding: 0 8px;
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .darsineh-action-chip svg {
        width: 18px;
        height: 18px;
    }
    
    .darsineh-settings-menu {
        right: 5px !important;
        bottom: 50px !important;
        max-height: calc(100% - 60px) !important;
        overflow-y: auto !important;
        min-width: 120px !important;
    }
    
    .darsineh-autoplay-box {
        max-width: 95% !important;
        padding: 10px !important;
    }
    
    .next-lesson-title {
        font-size: 14px !important;
        margin-bottom: 10px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .timer-circle {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 10px !important;
    }
    
    #darsineh-countdown {
        font-size: 1rem !important;
    }
}

.darsineh-tabs-wrapper {
    margin-top: 20px;
}

.darsineh-tabs-header {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 25px;
}

.darsineh-tab-btn {
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    border: none;
    background: transparent !important;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.darsineh-tab-btn:hover {
    color:#01B3B9);
}

.darsineh-tab-btn.active {
    color:#01B3B9);
    border-bottom-color: #01B3B9);
}

.darsineh-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.darsineh-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.darsineh-qa-ask-box {
    display: flex;
    gap: 15px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.darsineh-qa-user-thumb img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.darsineh-qa-form-wrapper {
    flex-grow: 1;
}

#darsineh-qa-input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px;
    min-height: 80px;
    font-family: inherit;
    resize: vertical;
    transition: border 0.2s;
}

#darsineh-qa-input:focus {
    border-color:#01B3B9);
    outline: none;
}

.darsineh-qa-form-actions {
    margin-top: 10px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.darsineh-btn-primary {
    background:#01B3B9) !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: opacity 0.2s !important;
}

.darsineh-btn-primary:hover {
    opacity: 0.9;
}

.darsineh-qa-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.darsineh-qa-main {
    display: flex;
    gap: 15px;
    max-width: 100%;
    overflow: hidden;
}

.darsineh-qa-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.darsineh-qa-avatar.small img {
    width: 32px;
    height: 32px;
}

.darsineh-qa-content-area {
    flex-grow: 1;
    min-width: 0;
}

.darsineh-qa-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10pxpx;
    font-size: 0.85rem;
}

.author-name {
    font-weight: 700;
    color: #334155;
}

.qa-date {
    color: #94a3b8;
}

.darsineh-qa-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.darsineh-qa-text p {
    margin: 0 0 10px 0;
}

.darsineh-qa-reply-toggle {
    background: none;
    border: none;
    color:#01B3B9) !important;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
	background: transparent !important;
}

.darsineh-qa-reply-form {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.darsineh-qa-reply-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 8px;
    min-height: 60px;
    margin-bottom: 8px;
}

.darsineh-btn-small {
    background:#01B3B9);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.darsineh-qa-replies-list {
    margin-top: 15px;
    padding-right: 20px;
    border-right: 2px solid #e2e8f0;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

[dir="rtl"] .darsineh-qa-replies-list {
    padding-left: 0;
    padding-right: 20px;
    border-left: none;
    border-right: 2px solid #e2e8f0;
}

[dir="ltr"] .darsineh-qa-replies-list {
    padding-left: 20px;
    border-left: 2px solid #e2e8f0;
    border-right: none;
}

.darsineh-qa-reply-item {
    margin-top: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

.darsineh-pinned-answer {
    border: 2px solid #22c55e;
    background: #f0fdf4;
    padding: 15px;
}

.darsineh-pinned-label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #22c55e;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid #bbf7d0;
    padding-bottom: 5px;
}

.darsineh-badge-instructor {
    background: #e0f2fe;
    color: #01B3B9;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.darsineh-pin-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #cbd5e1;
    transition: color 0.2s;
	background: transparent !important;
}

.darsineh-pin-btn:hover {
    color: #f59e0b;
}

.course-curriculum-wrapper {
    font-family: inherit;
    background-color: var(--darsineh-cc-bg, #F8FAFC);
    padding: var(--darsineh-cc-padding, 30px);
    border-radius: var(--darsineh-cc-radius, 20px);
    margin: 0 auto;
    box-sizing: border-box;
    direction: rtl;
	margin-bottom: 20px;
}

.course-curriculum-wrapper * {
    box-sizing: border-box;
}

.cc-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
    gap: 20px;
}

.cc-course-main-title {
    font-size: 18px;
    font-weight: 800;
    color:#01B3B9);
    line-height: 1.6;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: -22px;
    border-bottom: 3px solid #01B3B9);
    z-index: 2;
    max-width: 60%;
}

.cc-stats-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 240px;
}

.cc-stats-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
}

.cc-session-count {
    font-size: 13px;
    color: #64748b;
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
}

.cc-percent-big {
    font-size: 18px;
    font-weight: 900;
    color: #334155;
}

.cc-progress-track {
    width: 100%;
    height: 8px;
    background-color: var(--darsineh-cc-prog-track, #e2e8f0);
    border-radius: 20px;
    overflow: hidden;
}

.cc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #01B3B9), #01B3B9));
    border-radius: 20px;
    position: relative;
}

.cc-card {
    background: var(--darsineh-cc-card-bg, #ffffff);
    border-radius: var(--darsineh-cc-card-radius, 16px);
    margin-bottom: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cc-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.cc-card.active {
    border-color: var(--darsineh-cc-active-border, #bfdbfe);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}

.cc-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.cc-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-grow: 1;
}

.progress-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: conic-gradient(var(--p-color) var(--p-percent), #f1f5f9 0);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cc-card:hover .progress-circle {
    transform: scale(1.05);
}

.progress-circle::after {
    content: attr(data-percent);
    position: absolute;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #475569;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.progress-circle.complete {
    --p-color: #10b981;
}

.progress-circle.complete::after {
    color: #10b981;
}

.progress-circle.blue {
    --p-color:#01B3B9);
}

.progress-circle.blue::after {
    color:#01B3B9);
}

.cc-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cc-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--darsineh-cc-sec-title, #1e293b);
    margin: 0;
    line-height: 1.4;
}

.cc-meta {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    gap: 15px;
    font-weight: 500;
}

.cc-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cc-toggle-icon {
    color: #cbd5e1;
    transition: transform 0.3s ease-out;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    background-color: #fff;
    border-radius: 0 0 16px 16px;
}

.cc-lesson-list {
    list-style: none;
    padding: 5px 24px 24px 24px;
    margin: 0;
}

.cc-lesson-item {
    display: block;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 14px;
    color: var(--darsineh-cc-item-text, #475569);
    transition: background 0.2s;
}

.cc-lesson-item-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cc-lesson-item:hover {
    color:#01B3B9);
}

.cc-lesson-item:last-child {
    border-bottom: none;
}

.cc-lesson-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cc-play-icon {
    width: 26px;
    height: 26px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.cc-play-icon.blue-icon {
    background-color:#01B3B9);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.cc-play-icon svg {
    width: 10px;
    height: 10px;
    fill: white;
}

.cc-lesson-time {
    color: #94a3b8;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    padding: 2px 6px;
    border-radius: 4px;
    flex-shrink: 0;
}

.cc-card.active .cc-body {
    opacity: 1;
}

.cc-card.active .cc-toggle-icon {
    transform: rotate(180deg);
    color:#01B3B9);
}

.cc-locked {
    cursor: not-allowed;
}

.cc-play-icon.locked-icon {
    background-color: #cbd5e1;
    box-shadow: none;
}

@media (max-width: 768px) {
    .course-curriculum-wrapper {
        padding: 15px;
        border-radius: 12px;
    }

    .cc-dashboard-header {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 20px;
        border-bottom: none;
        margin-bottom: 15px;
        padding-bottom: 0;
    }
	
	.btn-cancel {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    padding: 6px 12px;
	font-size: 12px;
    }

    .cc-course-main-title {
        max-width: 100%;
        font-size: 16px;
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
        text-align: right;
    }

    .cc-stats-box {
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .cc-header {
        padding: 15px;
    }

    .cc-header-right {
        gap: 12px;
    }

    .progress-circle {
        width: 42px;
        height: 42px;
    }

    .progress-circle::after {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }

    .cc-title {
        font-size: 14px;
    }

    .cc-meta {
        gap: 10px;
        font-size: 11px;
    }

    .cc-lesson-list {
        padding: 0 15px 15px 15px;
    }

    .cc-lesson-item {
        padding: 12px 0;
    }

    .cc-lesson-right span {
        font-size: 13px;
        line-height: 1.5;
    }

    .cc-play-icon {
        width: 24px;
        height: 24px;
    }
	.darsineh-big-play-btn {
        width: 55px;
        height: 55px;
    }
	#darsineh-prev-5s {
        display: none;
    }
	button#darsineh-next-5s {
        display: none;
    }
	.up-next-label {
    font-size: 12px;
    }
	.darsineh-box-style{
		padding: 20px !important;
	}
	.darsineh-tab-btn{
		width: 50%;
		font-size: 14px;
	}
}