.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    right: 0px;
    min-width: 350px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.suggestion-item {
    padding: 8px 12px;
    line-height: 30px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

.border-none {
    border: none;
}

.table {
    border-spacing: 0 10px; /* 水平间距 垂直间距 */
    border-collapse: separate;
    background-color: var(--tblr-body-bg);
    border: none;
}

.table thead tr th {
    font-size: 13px;
    border-bottom: 1px var(--tblr-card-border-color) solid;
}

.table-tbody tr {
    background-color: #fff;
}

.table-tbody tr td {
    border: none;
    border-top: 1px var(--tblr-card-border-color) solid;
    border-bottom: 1px var(--tblr-card-border-color) solid;
}

/* 添加首尾td的圆角样式 */
.table-tbody tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-left: 1px var(--tblr-card-border-color) solid;
}

.table-tbody tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-right: 1px var(--tblr-card-border-color) solid;
}