/* edu-coach public CSS */

.edu-coach-student-container,
.edu-coach-tutor-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: #333;
}

/* Subject cards */
.edu-subject-card {
    transition: all 0.3s ease;
}

.edu-subject-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Progress bar */
.edu-progress-bar {
    width: 100%;
    height: 24px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    margin: 10px 0;
}

.edu-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Buttons */
.edu-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.edu-btn-primary {
    background: #0073aa;
    color: white;
}

.edu-btn-primary:hover {
    background: #005a87;
}

.edu-btn-secondary {
    background: #ccc;
    color: #333;
}

.edu-btn-secondary:hover {
    background: #aaa;
}

/* Exercise feedback */
.edu-feedback {
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.edu-feedback.correct {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.edu-feedback.incorrect {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.edu-feedback.pending {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

/* Responsive */
@media (max-width: 768px) {
    .edu-coach-student-container,
    .edu-coach-tutor-container {
        margin: 10px;
    }
    
    .edu-subjects-selector {
        grid-template-columns: 1fr;
    }
}
