#dash_table.table {
    border: 2px dashed #007bff;
    border-radius: 10px;
}

#dash_table.table td,
#dash_table.table th {
    border: none;
}

/* 显示四行结果 */
.searchmini tbody {
    display: block;
    max-height: 130px;
    overflow-y: auto;
}

/* 显示10行结果 */
.searchmax tbody {
    display: block;
    max-height: 8000px;
    overflow-y: auto;
}

.my-scrollable-area::-webkit-scrollbar {
    background-color: transparent;
    border: none;
}
/* dataset页面未激活的按钮状态  不能直接#data_unactive_button 要不然会出现优先级不够*/ 
button.data_unactive_button {
    background-color: rgb(168, 193, 233);
    color: white;
}

.choose_yellow{
    background-color: yellow
}
body {
    background-color: #F5F7FA;
}
.custom-border {
    border: 1px solid #dee2e6; /* 这里使用Bootstrap默认的边框颜色 */
}