/* Server Help Section */
.server-help {
    background: rgba(15, 30, 70, 0.05);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 8px;
    text-align: center;
}

.server-info {
    font-family: 'inter-regular', sans-serif;
    font-size: 1.1rem;
    color: #667eea;
    display: inline-block;
}

.server-info code {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: 'Courier New', monospace;
    font-size: 1.0rem;
    color: #5a6abf;
    margin: 0 2px;
}

/* Suggested Question Buttons */
.suggested-question-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 20px;
    color: white;
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    font-family: 'inter-regular', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.suggested-question-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #7c8df1 0%, #8a5cb8 100%);
}

/* Graphiti Response Styles */
.graphiti-response {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.graphiti-response .generated-text-prompt {
    font-family: 'inter-regular', sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 15px;
}

.graphiti-metadata {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.graphiti-metadata span {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 1.2rem;
    font-family: 'inter-medium', sans-serif;
    color: #3498db;
}

.actual-data-preview {
    background: rgba(46, 204, 113, 0.05);
    border-left: 4px solid #2ecc71;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.actual-data-preview h4 {
    font-family: 'inter', sans-serif;
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 10px;
}

.actual-data-preview ul {
    list-style: none;
    padding: 0;
}

.actual-data-preview li {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 5px;
    font-family: 'inter-regular', sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    line-height: 1.4;
}

.actual-data-preview li:last-child {
    margin-bottom: 0;
}

/* Question prompt styling for better contrast */
.question {
    color: white;
    padding: 12px 16px;
    border-radius: 18px;
    margin: 10px 0;
    display: inline-block;
    max-width: 80%;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.question span {
    font-family: 'inter-regular', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
}