/* --- Base Styles --- */
#kysupi-content-app {
    font-family: 'Inter', sans-serif, system-ui;
}

/* --- Loader Spinner --- */
.loader {
    border: 4px solid #f3f3f3; /* Màu nền của spinner */
    border-top: 4px solid #4f46e5; /* Màu chính của spinner (Indigo) */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Prose styles for content output --- */
/* Tùy chỉnh hiển thị nội dung HTML được tạo ra từ Markdown */
#output-content.prose h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

#output-content.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.25em;
    margin-bottom: 0.5em;
}

#output-content.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-top: 1em;
    margin-bottom: 1em;
}

#output-content.prose li {
    margin-bottom: 0.5em;
}

#output-content.prose strong {
    font-weight: 700;
}