.acc-tab-content input[type="text"] {
    /* This makes sure that the text boxes are displayed */
    font-size: 20px;
    opacity: 1;
    position: static;
}

.cls-grammar-section-header {
    display: flex;
    justify-content: space-around;
}

.cls-style-titling {
    font-size: 20px;
    color: darkslategray;
}

.lesson_grammar_pix_container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.cls-descriptions-container {
    width: 95%;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.cls-description-area {
    display: flex;
    flex-direction: column;
    width: 95%;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.cls-the-description {
    background-color: lightgoldenrodyellow;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
}

.cls-descriptions-add-button {
    text-align: center;
    margin-top: 20px;
}



.clsFlexTable {
    width: 1200px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    /* background-color: yellow; */
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

.clsFlexTableRow {
    display: flex;
    flex-direction: row;

}

.clsTableCol {
    border: 1px solid lightgray;
    color: rgb(94, 92, 92);
    /* display: flex;
    align-items: center; */
    padding-left: 5px;
}

.cls-the-example table {
    border: 1px solid black;
    margin-bottom: 20px;
}

.cls-the-example td {
    padding: 0 10px 0 10px;
    cursor: pointer;
}


/************** CSS For Adding Grammar Example Table based on current data *************/

#example-container {
    border-radius: 10px;
    background-color: tan;
    position: absolute;
    margin: auto;
    border: 2px solid black;
    font-family: Verdana, Geneva, sans-serif;
    color: black;
    z-index: 0;
    margin-bottom: 30px;
    padding: 0 20px 0 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 1200px;
    max-height: 700px;
    overflow-y: auto;
}


/* #example-table {
    display: flex;
    flex-direction: column;
} */

#example-title {
    text-align: center;
    font-size: 25px;
    color: white;
    margin: 20px 0 20px 0;
}

#example-subtitles {
    font-size: 10px;
    color: white;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

#example-nav {
    display: flex;
    justify-content: space-around;
    margin: 20px auto 20px auto;
}

#example-table {
    display: flex;
    flex-direction: column;
}

#example-table .clsTableBoxes {
    /*input[type="text"] {*/
    width: 100%;
    height: 55px;
    font-size: 15px;
}

#example-table input[type="radio"] {
    width: 20px;
    transform: scale(1.4);
}

#example-table-styling {
    /*border: 1px solid grey;*/
    padding: 5px;
}

.grammarExampleRows {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.grammarExampleCols {
    padding: 6px 3px 3px 3px;
    border: 2px solid black;
    margin: 10px;
    background-color: white;
    min-height: 60px;
    line-height: 40px;
    height: 40px;
    cursor: pointer;
}


/*********************** CSS For Adding New Example Table ******************************/

#new-example-table-container {
    border-radius: 10px;
    background-color: tan;
    position: absolute;
    border: 2px solid black;
    font-family: Verdana, Geneva, sans-serif;
    color: black;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    padding-top: 20px;
}

#new-example-title {
    text-align: center;
    color: white;
    font-size: 20px;
    padding: 0 0 20px 0;
}

.clsNewTableDescr {
    font-size: 20px;
    color: brown;
}

#newTableTextText {
    display: flex;
    justify-content: center;
    line-height: 30px;
}

#txtNewRows,
#txtNewCols {
    width: 50px;
    height: 30px;
    color: LightSlateGray;
    text-align: center;
}

#new-example-table-nav {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}