body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-fluid {
    height: 100vh;
}

.tendering-item {
    cursor: pointer;
    transition: background-color 0.2s;
}

.tendering-item:hover {
    background-color: #f8f9fa;
}

.tendering-item.active {
    background-color: #e3f2fd;
    border-left: 4px solid #0d6efd;
}

.content-box {
    max-height: 500px;
    overflow-y: auto;
    white-space: pre-wrap;
    line-height: 1.6;
}

.pagination {
    margin-bottom: 0;
}

.badge {
    font-size: 0.75em;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 表单控件样式 */
.form-label.small {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

/* 搜索框样式 */
.input-group-sm {
    margin-bottom: 0;
}

/* 评分阈值滑块样式 */
.form-range {
    height: 1.5rem;
    padding: 0;
    margin-bottom: 0;
}

.form-range::-webkit-slider-thumb {
    background: #0d6efd;
}

.form-range::-moz-range-thumb {
    background: #0d6efd;
}

/* 阈值显示样式 */
#threshold-value {
    font-weight: bold;
    color: #0d6efd;
}

/* 显示未评分项目开关样式 */
.form-check {
    margin-bottom: 0;
}

.form-check-label.small {
    font-size: 0.875rem;
}

/* 徽章说明样式 */
.form-text .badge {
    margin-right: 0.25rem;
    font-size: 0.65rem;
}

/* 紧凑布局调整 */
.row.g-2 {
    margin-bottom: 0.5rem;
}

/* 总数信息样式 */
.text-muted {
    font-size: 0.875rem;
}
