/* --- Lesson Page Specific Styles --- */

/* Custom Code Box Styling */
.code-window {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.code-header {
    background-color: #2d2d2d;
    color: #fff;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-size: 0.9rem;
}

/* Override Prism styles to fit window */
pre[class*="language-"] { 
    margin: 0 !important; 
    border-radius: 0 0 8px 8px !important; 
}

/* Teacher Note Box */
.teacher-note {
    border-left: 4px solid #ffc107;
    background-color: #fff3cd;
    color: #664d03;
    position: relative;
}

.teacher-note::before {
    content: '👨‍🏫 Note สำหรับผู้สอน:';
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}