/* Frontend Styles for WC Memberships Tutor LMS */

/* Membership Options Box */
.wcmt-membership-options {
    margin: 0 0 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

    .wcmt-membership-options h4 {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

.wcmt-membership-option {
    padding: 15px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.wcmt-membership-info {
    margin-bottom: 15px;
}

.wcmt-membership-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.wcmt-membership-price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0073aa;
    margin-bottom: 10px;
}

.wcmt-membership-benefit {
    font-size: 14px;
    color: #46b450;
    margin: 0;
    font-style: italic;
}

.wcmt-membership-btn {
    display: block !important;
    width: 100%;
    text-align: center;
    padding: 12px 20px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

/* Courses Accordion */
.wcmt-courses-accordion {
    margin-top: 15px;
}

.wcmt-courses-toggle {
    color: #0073aa;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    user-select: none;
}

    .wcmt-courses-toggle::before {
        content: '▼';
        position: absolute;
        left: 0;
        transition: transform 0.3s ease;
        font-size: 12px;
    }

    .wcmt-courses-toggle.active::before {
        transform: rotate(180deg);
    }

    .wcmt-courses-toggle:hover {
        color: #005a87;
    }

.wcmt-courses-list {
    display: none;
    margin-top: 10px;
    padding: 10px 0 0 0;
}

.wcmt-course-item {
    display: block;
    padding: 8px 12px;
    margin-bottom: 5px;
    background: #f9f9f9;
    border-left: 3px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

    .wcmt-course-item:hover {
        background: #f0f0f0;
        border-left-color: #0073aa;
        color: #0073aa;
    }

    .wcmt-course-item.current-course {
        background: #e7f3f8;
        border-left-color: #0073aa;
    }

.wcmt-separator {
    text-align: center;
    margin: 15px 0;
    position: relative;
}

    .wcmt-separator::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #ddd;
        z-index: 0;
    }

    .wcmt-separator span {
        position: relative;
        z-index: 1;
        background: #f9f9f9;
        padding: 0 15px;
        color: #666;
        font-size: 13px;
        font-style: italic;
    }

/* Course Suspension Notice */
.wcmt-suspension-notice {
    margin: 20px 0;
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
}

    .wcmt-suspension-notice h3 {
        color: #856404;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .wcmt-suspension-notice p {
        color: #856404;
        margin: 10px 0;
    }

    .wcmt-suspension-notice .tutor-btn {
        margin-top: 10px;
    }

/* Responsive */
@media (max-width: 768px) {
    .wcmt-membership-options {
        padding: 15px;
    }

    .wcmt-membership-option {
        padding: 12px;
    }

    .wcmt-membership-btn {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }

    .wcmt-courses-toggle {
        font-size: 13px;
    }

    .wcmt-course-item {
        font-size: 13px;
        padding: 6px 10px;
    }
}
