/**
 * Student Panel Styles
 * 
 * @package EduCoach
 */

.edu-coach-student-panel {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.edu-coach-student-panel h1 {
    color: #212529;
    margin-top: 0;
    font-size: 2em;
}

.student-welcome {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.student-welcome p {
    margin: 0;
    color: #0066cc;
}

.student-content h2 {
    color: #212529;
    margin-top: 30px;
    font-size: 1.5em;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

.student-content h3 {
    color: #495057;
    margin-top: 20px;
    font-size: 1.2em;
}

.subjects-list,
.units-list {
    list-style: none;
    padding: 0;
}

.subjects-list li,
.units-list li {
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.subjects-list li:hover,
.units-list li:hover {
    background: #f8f9fa;
}

.subjects-list a,
.units-list a {
    font-size: 1.1em;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}

.subjects-list a:hover,
.units-list a:hover {
    text-decoration: underline;
}

.subject-desc,
.unit-desc {
    display: block;
    margin-top: 5px;
    color: #6c757d;
    font-size: 0.9em;
}

.exercise-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.exercise-card h4 {
    margin-top: 0;
    color: #212529;
}

.exercise-form {
    margin-top: 15px;
}

.exercise-form label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.exercise-form input[type="radio"] {
    margin-right: 8px;
}

.exercise-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
    margin-bottom: 10px;
}

.exercise-form button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.exercise-form button:hover {
    background: #0052a3;
}

.exercise-feedback {
    margin-top: 15px;
    padding: 15px;
    border-radius: 4px;
}

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

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

.recent-answers {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.recent-answers th,
.recent-answers td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.recent-answers th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.recent-answers tbody tr:hover {
    background: #f8f9fa;
}

/* Tutor Panel */
.edu-coach-tutor-panel {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.edu-coach-tutor-panel h1 {
    color: #212529;
    margin-top: 0;
    font-size: 2em;
}

.tutor-welcome {
    background: #e8f5e9;
    border-left: 4px solid #2e7d32;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.tutor-welcome p {
    margin: 0;
    color: #2e7d32;
}

.tutor-content h2 {
    color: #212529;
    margin-top: 30px;
    font-size: 1.5em;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

.tutor-content select {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1em;
    margin-right: 10px;
}

.progress-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.progress-table th,
.progress-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.progress-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.progress-table tbody tr:hover {
    background: #f8f9fa;
}
