.container { max-width: 800px; margin-top: 50px; }
.response-box { 
    background-color: #f8f9fa; 
    padding: 15px; 
    border-radius: 5px; 
    margin-top: 20px; 
    min-height: 100px; 
}
.chat-container {
    margin-bottom: 30px;
}
.progress {
    height: 25px;
    margin-top: 10px;
}
.progress-bar {
    transition: width 0.3s ease-in-out;
}
.progress-message {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}
.connection-status {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}
.status-connected {
    background-color: #28a745;
}
.status-disconnected {
    background-color: #dc3545;
}
.control-buttons {
    margin-top: 10px;
}
.tqdm-progress {
    font-family: monospace;
    white-space: pre;
    margin: 10px 0;
    padding: 5px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 0.9em;
}
.tqdm-bar {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #007bff;
    margin: 0 2px;
}
.loading-status {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.loading-status .spinner-border {
    margin-right: 10px;
}
.progress-container {
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    background-color: #fff;
}
.progress-title {
    font-weight: 500;
    margin-bottom: 5px;
}