#exercise-solutions-view {

    height: 80vh;

    position: relative;

    .title {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        padding-bottom: 16px;
        margin-bottom: 32px;
        border-bottom: 1px solid #ddd;
        width: 100%;        
        justify-content: space-between;
        background-color: white;
        z-index: 9999;

        .exercise-name {

            text-align: left;
            font-size: 32px;

        }

        button {
            width: 80px;
            padding: 10px;
            margin: 0px;
        }

    }

    .sentence-solutions-container {
        padding-top: 8vh;
        height: 100%;
        overflow: auto;
    }

    .sentence-solution-container {
        text-align: left;
        border-bottom: 1px solid #ddd;
        margin-bottom: 32px;
        padding: 32px 0;

        .sentence-label {
            font-size: 24px;
        }

        svg {
            display: block; 
            margin: auto;
        }
    }
}