.report_rlu_container{
    display: flex;
    flex-direction: row;
    height: 100%;
}

.report_rlu_container .rlu_menu{
    width: 14rem;
    background: #f8fcff;
    border-right: 1px solid #555;
}
.report_rlu_container .rlu_menu .item:hover{
    background: #c1e9ff;
}

.report_rlu_container .rlu_menu .item.active{
    background: #c1e9ff;
    font-weight: bold;
    font-size: 0.9rem;
}

.report_rlu_container .rlu_menu .item{
    padding: 0.4rem;
    background: #e6f6ff;
    cursor: pointer;
    margin-bottom: 1px;
}

.report_rlu_container .rlu_report1{
    margin-right: 2rem;
    display:flex;
    flex-direction: column;
}

.report_rlu_container .rlu_report1 .tools_bar{
    padding: 0.8rem;
}

.report_rlu_container .rlu_report1 .table_container{
    padding: 0.4rem;
    overflow-y: auto;
}

.report_rlu_container .rlu_report2{
    flex-grow: 1;
    padding: 0.8rem;
}

.report_rlu_container .rlu_report{
    flex-grow: 1;
    background: white;
    display: flex;
    flex-direction: row;
}

.report_rlu_container .rlu_report thead td{
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    padding: 0 0.4rem;
}
.report_rlu_container .rlu_report tbody td{
    padding: 0rem 0.8rem;
    text-align: right;
}

.report_rlu_container button.excel{
    font-size: 0.9rem;
    padding: 0.3rem;
}

.report_rlu_container input[type=radio]{
    margin-left: 1rem;
}

.report_rlu_container label{
    cursor: pointer;
}

.report_rlu_container .remark{
    position: absolute;
    bottom: 2rem;
    white-space: pre;
}

.report_rlu_container .loading{
    width: 20px;
    height: 20px;
}

.rlu_patient_list{
    height: 70vh;
    text-align: center;
}

.rlu_patient_list table{
    user-select: none;
}

.rlu_patient_list thead tr th {
    position: sticky;
    top: 0;
    background: lightskyblue;
}

.rlu_patient_list .active {
    background: #f0f0f0;
}

.rlu_patient_list tbody tr:hover {
    background: #f5f5f5;
    cursor: pointer;
}