.ulayers-lessons-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lesson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lesson-item:hover {
    background: #f1f1f1;
}

.lesson-title {
    font-weight: 600;
    color: #333;
}

.lesson-icon {
    font-size: 18px;
    color: #666;
}

.lesson-icon.play {
    color: var(--bricks-color-dtjhxn);
}

.lesson-icon.lock {
    color: #aaa;
}

/* Popup */
.lesson-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.lesson-modal-content {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    max-width: 850px;
    width: 95%;
    position: relative;
    padding-top: 40px;
}

.lesson-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: var(--bricks-color-wabhgl)!important;
    color: #000000;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.lesson-close-btn:hover {
    background: #33a8a7;
}

.lesson-video-container {
    width: 100%;
    min-height: 450px;
    background: #000;
}