body{
    font-family:'Courier New', Courier, monospace;
    font-weight: 10;
    font-size: x-small;
}

.table_wrapper{
    width: 100%;
    height: 100%; 
    z-index: 120;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
    margin-bottom: -6px;
    margin-top: 2px;
}

.table_wrapper table{
    table-layout: fixed; 
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

a{
    text-decoration: none;
}

.instrument.selected{
    color: rgb(216, 241, 22) !important;
}

.dataTables_filter {
    float: left !important;
}

.dataTables_length{
    float: right !important;
    display: none;
}

:root {
    --dt-row-selected: 100, 110, 120; 
    --dt-row-selected-text: 255, 255, 255; 
    --dt-row-selected-link: 9, 10, 11; 
    --dt-row-stripe: 0, 0, 0; 
    --dt-row-hover: 0, 0, 0; 
    --dt-column-ordering: 0, 0, 0; 
    --dt-html-background: white;
}

tr.selected {
    font-size: xx-small;
}

tr.user-select {
    background-color: #ec9538 !important;
    color: #000; /* 黑色 */
    font-weight: bold;
    border: 1px solid #000; /* 黑色边框 */
}

tr.user-and-selected{
    background-color: #f1312a !important;
}

/* add refine on info and paginate */


.dataTables_wrapper {
    background-color: white;
}

.dataTables_wrapper .dataTables_info{
    float:left;
}

.dataTables_wrapper .dataTables_paginate{
    float:center;
    margin-top: 2px;
    padding-top: 0px;
}

@media (max-width: 600px) {
    .dataTables_wrapper .dataTables_info{
        display: none;
    }
}


/*  */

.direct {
    display: flex;
    align-items: center;
    margin-bottom: 1px;
}

.direct .arrow {
    position: relative;
    width: 100px;
    height: 30px;

    display: flex;
    justify-content: center; 
    align-items: center; 

    background-color: #44685f;
    color: white;
    line-height: 50px;
    margin: 0 3px;
    border-radius: 0px;
}

.direct .arrow:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #44685f;
    transform: translateY(-50%);
}
.direct .arrow.select {
    display:inline-flexbox;
    flex-direction: row;
    justify-content: center; 
    align-items: center;

}
.direct .arrow button {
   font-size: xx-small;
   color: beige;
   background-color: transparent;
   border: 1px solid white;
   border-radius: 20%;
   margin-top: -4px;
}
.direct .arrow button:hover {
   background-color: gray;
   border: 1px solid royalblue;
}