.sse-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sse-form .form-group {
    margin-bottom: 15px;
}

.sse-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.sse-form input[type="text"],
.sse-form input[type="password"],
.sse-form input[type="number"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.required-asterisk {
    color: #ff0000;
    margin-left: 3px;
}

.sse-results {
    margin-top: 25px;
    display: none;
}

.param-section, .log-section {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.param-section h4, .log-section h4 {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.param-output, .log-output {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: monospace;
    white-space: pre-wrap;
}

.sse-progress {
    margin: 10px 0;
}

.progress-bar {
    height: 20px;
    background: #4CAF50;
    width: 0%;
    border-radius: 3px;
    transition: width 0.3s;
}

.progress-text {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

.sse-status {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
}

.sse-status .spinner {
    margin-right: 10px;
}

.sse-status .status-text {
    font-weight: 600;
}

.error-message {
    color: #f44336;
    font-weight: bold;
}
/* 在原有样式基础上添加以下内容 */

.param-display {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-family: monospace;
    white-space: pre-wrap;
}

.param-display h4 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.param-item {
    margin-bottom: 5px;
}

.param-name {
    font-weight: bold;
    color: #333;
}

.custom-params {
    margin-left: 20px;
}