<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Evaluation Page Styles */
.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.evaluation-summary {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #4a6da7;
}

.evaluation-summary h3 {
    margin-top: 0;
    color: #4a6da7;
}

.evaluation-chart-container {
    height: 300px;
    margin: 20px 0;
}

.conversation-flow-container {
    height: 300px;
    margin: 20px 0;
}

.evaluation-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.score-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.score-card h4 {
    margin-top: 0;
    color: #4a6da7;
    margin-bottom: 10px;
}

.score-container {
    text-align: center;
    margin-bottom: 10px;
}

.score-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    background-color: #6c757d;
}

.score-badge.excellent {
    background-color: #28a745;
}

.score-badge.good {
    background-color: #17a2b8;
}

.score-badge.average {
    background-color: #ffc107;
}

.score-badge.poor {
    background-color: #dc3545;
}

.suggestion {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

/* Animation styles */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.evaluation-chart-container, 
.conversation-flow-container,
.score-card {
    opacity: 0;
}

.key-insights {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #17a2b8;
}

.key-insights h3 {
    color: #17a2b8;
    margin-top: 0;
}

.key-insights ul {
    padding-left: 20px;
}

.key-insights li {
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .evaluation-details {
        grid-template-columns: 1fr;
    }
}

/* Chat container styles */
#chat-container {
    display: flex;
    flex-direction: column;
    height: 400px;
}

#chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 10px;
}

.chat-input-container {
    display: flex;
    margin-bottom: 10px;
}

#message-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
    height: 60px;
}

#send-button {
    margin-left: 10px;
    align-self: flex-end;
}

.card-footer {
    padding: 15px;
    background-color: #f8f9fa;
}

/* Button styles for evaluation page */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.action-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    font-size: 1rem;
    min-width: 200px;
    max-width: 250px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .evaluation-details {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        max-width: 100%;
    }
} </pre></body></html>