.mh-cm-course-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.mh-cm-course-header {
    margin-bottom: 30px;
}

.mh-cm-progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
}

.mh-cm-progress-fill {
    height: 100%;
    background: #3498db;
    transition: width 0.3s ease;
}

.mh-cm-progress-text {
    font-size: 14px;
    color: #666;
}

.mh-cm-course-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
}

.mh-cm-lessons-sidebar {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.mh-cm-lessons-sidebar h3 {
    margin-top: 0;
}

.mh-cm-lessons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mh-cm-lesson-item {
    padding: 12px;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mh-cm-lesson-item:hover {
    background: #f0f0f0;
}

.mh-cm-lesson-item.active {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.mh-cm-lesson-item.completed {
    border-left: 4px solid #27ae60;
}

.mh-cm-lesson-number {
    font-weight: bold;
    min-width: 24px;
}

.mh-cm-lesson-title {
    flex: 1;
}

.mh-cm-checkmark {
    color: #27ae60;
    font-weight: bold;
}

.mh-cm-video-area {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.mh-cm-video-container {
    position: relative;
}

.mh-cm-video-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #1a1a1a;
    color: #fff;
}

.mh-cm-lesson-info {
    font-weight: 500;
}

.mh-cm-lesson-complete {
    padding: 15px;
    text-align: center;
    background: #1a1a1a;
}

.mh-cm-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.mh-cm-btn:hover {
    background: #2980b9;
}

.mh-cm-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.mh-cm-btn-primary {
    background: #3498db;
}

.mh-cm-btn-secondary {
    background: #95a5a6;
}

.mh-cm-btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

.mh-cm-btn-small {
    padding: 5px 10px;
    font-size: 12px;
}

.mh-cm-login-required,
.mh-cm-no-access,
.mh-cm-error,
.mh-cm-success-message {
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    margin: 20px 0;
}

.mh-cm-no-access {
    background: #f8d7da;
    border-color: #f5c6cb;
}

.mh-cm-error {
    background: #f8d7da;
    border-color: #f5c6cb;
}

.mh-cm-success-message {
    background: #d4edda;
    border-color: #c3e6cb;
}

.mh-cm-statement-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.mh-cm-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.mh-cm-form-group {
    margin-bottom: 20px;
}

.mh-cm-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.mh-cm-form-group input,
.mh-cm-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.mh-cm-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.mh-cm-help-text {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

.mh-cm-status-message {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.mh-cm-status-pending {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

.mh-cm-status-approved {
    background: #d4edda;
    border: 1px solid #28a745;
}

.mh-cm-status-rejected {
    background: #f8d7da;
    border: 1px solid #dc3545;
}

.mh-cm-status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.mh-cm-status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.mh-cm-status-badge.approved {
    background: #d4edda;
    color: #155724;
}

.mh-cm-status-badge.rejected {
    background: #f8d7da;
    color: #721c24;
}

.mh-cm-certificate-section {
    padding: 20px;
    background: #d4edda;
    border: 1px solid #28a745;
    border-radius: 4px;
    margin-top: 20px;
}

.mh-cm-my-courses {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.mh-cm-no-courses {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.mh-cm-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mh-cm-course-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.mh-cm-course-card-header {
    background: #3498db;
    color: #fff;
    padding: 15px;
}

.mh-cm-course-card-header h3 {
    margin: 0 0 10px 0;
}

.mh-cm-course-price {
    font-size: 18px;
    font-weight: bold;
}

.mh-cm-course-card-body {
    padding: 20px;
}

.mh-cm-course-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.mh-cm-course-actions a {
    flex: 1;
}

.mh-cm-statement-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.mh-cm-course-selector h2,
.mh-cm-statement-form-wrapper h2 {
    margin-bottom: 20px;
}

.mh-cm-course-list {
    list-style: none;
    padding: 0;
}

.mh-cm-course-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mh-cm-course-name {
    font-weight: 600;
}

@media (max-width: 768px) {
    .mh-cm-course-content {
        grid-template-columns: 1fr;
    }
    .mh-cm-courses-grid {
        grid-template-columns: 1fr;
    }
    .mh-cm-course-actions {
        flex-direction: column;
    }
}
