/* Estilo do Widget MyTLessonPlanCard */

.lesson-plan-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.lesson-plan-header {
    padding: 12px 16px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.lesson-plan-header:hover {
    background: #f1f5f9;
}

.lesson-plan-ordem {
    background: #2563eb;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-right: 8px;
}

.lesson-plan-titulo {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    flex: 1;
}

.lesson-plan-duracao {
    font-size: 12px;
    color: #64748b;
    margin-right: 12px;
}

.lesson-plan-body {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
}

.lesson-phase {
    margin-bottom: 12px;
}

.lesson-phase:last-child {
    margin-bottom: 0;
}

.phase-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.phase-warm { background: #fff7ed; color: #c2410c; }
.phase-main { background: #eff6ff; color: #1d4ed8; }
.phase-cool { background: #f0fdf4; color: #15803d; }

.lesson-phase p {
    margin: 0;
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
}

.lesson-recursos {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
    font-size: 12px;
    color: #64748b;
}
