#word-identification-view {

    padding: 40px 20px;
    

    #sentence-container {
        padding: 10px 0;
        margin-bottom: 10px;
        text-align: center;
    }

    #sentence-instructions-subtitle, #word-identification-subtitle {
        font-size: 16px;
        font-style: italic;
        padding: 10px;
        display: inline-block;
        color: #C0392B;
        width: 50%;
        text-align: center;
    }

    #sentence-instructions-subtitle {
        float: left;
    }

    #word-identification-subtitle {
        float: right;
    }

    .pos-highlight {
        font-weight: bold;
        text-decoration: underline;
    }

    #word-identification-table-container {
        width: 100%;
        padding: 20px 0;
        overflow: auto;

        table {
            width: 100%;
    
            td {
                position: relative;
                border: 1px solid black;
                width: 500px;
                padding: 10px 5px;
                margin: 0;
    
    
                &.drop-highlight {
                    background-color: rgba(183, 245, 233, 0.2);
    
                    .word-drop-instruction {
                        color:#787878;
                    }
                }
    
                &.drop-over {
                    background: rgba(183, 245, 233, 1);    
    
                    .word-drop-instruction {
                        color: #787878;
                    }           
                }
    
                &.clear-words-cell {
                    width: 50px;
                    border: none;
                    text-align: center;
                    i {
                        &.inactive {
                            color: white;
                        }
    
                        &.active:hover {
                            color: #2694E7;
                            cursor: pointer;
                        }
                    }
                }
    
                .word-drop-instruction {
                    color: #ddd;
                }            
    
                .word-select {
                    width: 100%;
                    height: 100%;
                    border: none;
                }
    
                .select2-selection.select2-selection--multiple, .select2-selection.select2-selection--single {
                    border-radius: 0px;
                    border: none;
    
                    .select2-selection__rendered {
                        padding: 0;
                        padding-right: 20px;
                    }
    
                    .select2-selection__clear {
                        display: none;
                    }
                }
    
                .extra-text {
                    display: none;
                    width: 310px;
                    text-align: left;
                    padding: 10px 0;
                    background-color: white;
                    position: absolute;
                    top: -30px;
                    border: 1px solid;
                    z-index: 99999;
                    line-height: 30px;
    
                    input, a {
                        display: inline-block;
                        font-size: 12px;
                    }
    
                    input {
                        width: 230px;
                        height: 30px;
                    }
                    a {
                        margin-left: 8px;
                        line-height: 30px;
                    }
    
                    .close-input-container {
                        margin: 0 10px !important;                                        
                        vertical-align: middle;
    
                        &:hover {
                            color: #3498db;
                        }
                    }
                }
            }
        }
    }


    #button-container {        
        width: 100%;        
        position: absolute;
        bottom: 0;
        display: block;
        background-color: white;
    }

    button{
        max-width: 800px;;
        width: 100%;
        margin: 20px auto;
        display: block;
    }

}