/* Tutor LMS Nested Accordion Styles */
.fims-tutor-parent-accordion {
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.fims-tutor-parent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fims-tutor-parent-header:hover {
    background: #f1f5f9;
}

.fims-tutor-parent-header h4 {
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
}

.fims-tutor-parent-icon {
    font-size: 20px;
    color: #64748b;
    transition: transform 0.3s ease;
}

.fims-tutor-parent-accordion.active .fims-tutor-parent-header {
    background: #e2e8f0;
    border-bottom: 1px solid #cbd5e1;
}

.fims-tutor-parent-accordion.active .fims-tutor-parent-icon {
    color: #0f172a;
}

/* Specific styling for child elements to look nested */
.fims-tutor-parent-body .tutor-course-topic {
    background: #fff;
}
.fims-tutor-parent-body .tutor-course-topic:last-child {
    margin-bottom: 0 !important;
}
