#exercise-senteces-solution-view {
    #sentences {
        margin: 16px;

        .saved-sentence {
            margin: 32px 16px;
            border-bottom: 1px solid;
            padding-bottom: 32px;

            h2 {
                font-size: 24px;
                margin-bottom: 32px;
            }

            .images-container {
                display: flex;

                .image-container {
                 
                    margin: 16px;
                }
            }

            img {
                display: block; 
                size: 80%;
                box-shadow: 0px 2px 4px rgba(50, 50, 50, 0.6);
                border-radius: 6px;
                padding: 32px;
            }

            .word-identification-container {
                display: flex;

                div {
                    margin: 16px;
                }
            }


            thead {
                th {
                    font-size: 16px;
                    font-style: italic;
                }
            }

            .student-solution, .solution, .teacher-comment {
                padding: 16px;
            }

            .teacher-comment {
                display: flex;
                flex-direction: column;

                .save-comment {
                    margin-top: 8px;
                }
            }

            .word-identification-row {

  
                
                table {		
                                    
                    text-align: left;
                    width: 100%;
                    
                    font-size: 16px;
                    
        
                    td {
                        border: 1px solid;
                        padding: 10px 5px;

                        .correct-answer{
                            color: #16A085;
                        }
        
                        .incorrect-answer {
                            color: #C0392B;
                        }
                    }
        
                }
            }

            .diagram-row {
                td {
                    vertical-align: top;

                    .image-container {
                        background-color: white;
                    }
                }

       


            }
            





        }

        .teacher-comment-container{
            display: flex;
            flex-direction: column;
            padding: 0 20px;

            label {
                font-weight: bold;
                font-size: 18px;
            }

            span {
                font-size: 16px;
                padding: 16px;
                color: red;
            }

            .teacher-comment-input {
                height: 150px;
                width: 400px;
                display: inline-block;
            }

            button {

                width: 400px;
            }    
        }
    }

    canvas {
		display: none;
	}
 
}