/* t-suggestion.css - 做T建议页面专属样式 */
.main-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 开盘提示样式：绿色背景，突出提示信息 */
.open-tip {
    padding: 15px;
    background-color: #e8f5e9;
    border-radius: 6px;
    margin-bottom: 15px;
    color: #2e7d32;
    font-size: 14px;
}

/* 建议详情样式：浅灰背景，内边距适配 */
.suggestion-detail {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

/* 配置表单：网格布局，适配不同屏幕 */
.config-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

/* 提交按钮：跨列显示，居中放大 */
.submit-btn {
    grid-column: 1 / -1;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
}

/* 历史记录列表：最大高度+纵向滚动 */
.history-list {
    max-height: 400px;
    overflow-y: auto;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
}

/* 历史记录项：底部边框分隔，内边距适配 */
.history-item {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 10px;
}

.history-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.history-item h4 {
    color: #2c3e50;
    font-size: 15px;
    margin-bottom: 8px;
}

.history-item p {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 4px;
}