.matrix-root .matrix-container
{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.matrix-root .title
{
    font-weight: bold;
    display: flex;
    font-size: 18px;
    height: 5%;
    padding: 10px;
}

.matrix-root #matrix-table
{
    border: 2px solid #DCDCDC;
    border-collapse: collapse;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.matrix-root .head
{
   background-color: #3598DB;
   color: rgb( var(--color-white) );
   font-family: arial, sans-serif;
}

.matrix-root .body
{
    color: #a0a0a0;
}

.matrix-root .head tr
.matrix-root .body tr
{
    border: none;
    height: 100px;
}

.matrix-root .body tr:nth-child(odd)
{
    background-color: #F2F2F2;
}

.matrix-root .head th
{
    border-right: 2px solid #DCDCDC;
    border-left: 2px solid #DCDCDC;
    position: relative;
    min-height: 100px;
    min-width: 190px;
    max-height: 100px;
    max-width: 190px;
    height: 100px;
    width: 190px;
}

.matrix-root .body td
{
    border-right: 2px solid #DCDCDC;
    border-left: 2px solid #DCDCDC;
    position: relative;
    min-height: 100px;
    min-width: 190px;
    max-height: 100px;
    max-width: 190px;
    height: 100px;
    width: 190px;
}

.matrix-root .content
{
    flex-direction: column;
    word-break: break-all;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    vertical-align: middle;
}

.matrix-root [contenteditable]:focus 
{
    outline: none;
}

.matrix-root #resizable-e
{
    top: 0;
    position: absolute;
    cursor: col-resize;
    display: block;
    right: -5px;
    height: 100% !important;
    width: 10px !important;
    z-index: 90;
}

.matrix-root #resizable-s
{
    bottom: -5px;
    position: absolute;
    cursor: row-resize;
    display: block;
    right: 0px;
    width: 100% !important;
    height: 15px !important;
    z-index: 90;
}
