body {
    font-family: var(--font_family);
    color: var(--font_color);
    background-color: var(--primary_bg_color);
}

.bg-primary-color {
    background-color: var(--primary_color);
}

.bg-primary-color-hover:hover {
    background-color: var(--primary_color_hover);
}

.bg-secondary-color {
    background-color: var(--secondary_color);
}

.bg-footer {
    background-color: var(--footer_bg_color);
    color: var(--footer_color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--font_color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--font_color);
}

/* Enhanced prose content styling */
.prose {
    max-width: none;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.prose h1 {
    font-size: 2.25rem;
    color: var(--font_color);
}

.prose h2 {
    font-size: 1.875rem;
    color: var(--font_color);
}

.prose h3 {
    font-size: 1.5rem;
    color: var(--font_color);
}

.prose h4 {
    font-size: 1.25rem;
    color: var(--font_color);
}

.prose h5 {
    font-size: 1.125rem;
    color: var(--font_color);
}

.prose h6 {
    font-size: 1rem;
    color: var(--font_color);
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--font_color);
}

.prose a {
    color: var(--primary_color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.prose a:hover {
    color: var(--primary_color_hover);
}

.prose blockquote {
    border-left: 4px solid var(--primary_color);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--font_color);
}

.prose code {
    background-color: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--primary_color);
}

.prose pre {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.prose pre code {
    background: none;
    padding: 0;
    color: var(--font_color);
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.prose th,
.prose td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    text-align: left;
}

.prose th {
    background-color: #f9fafb;
    font-weight: 600;
}

.prose hr {
    border: none;
    height: 1px;
    background-color: #e5e7eb;
    margin: 2rem 0;
}

.prose ol {
    list-style: decimal;
    margin: 0 0 1em 1.5em;
    padding: 0;
}

.prose ul {
    list-style: disc;
    margin: 0 0 1em 1.5em;
    padding: 0;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose ol ol {
    list-style: lower-alpha;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose ul ul {
    list-style: circle;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}


.card-body ol {
    list-style: decimal;
    margin: 0 0 1em 1.5em;
    padding: 0;
}

.card-body ul {
    list-style: disc;
    margin: 0 0 1em 1.5em;
    padding: 0;
}

.card-body li {
    margin-bottom: 0.5em;
}

.card-body ol ol {
    list-style: lower-alpha;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.card-body ul ul {
    list-style: circle;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.prose .pb-12 {
    margin: 20px 0;
    padding-bottom: 0;
}

a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline !important;
}

/* Add other Tailwind CSS classes or custom styles here */

.text-homepage,
.text-homepage p {
    color: var(--homepage_text_color) !important;
}

.footer p {
    color: var(--primary_color);
}

.slogan {
    color: var(--secondary_color);
}

/* Custom font size adjustments */
.text-homepage {
    font-size: 1rem !important;
}

.bg-gray-50 {
    font-size: 1rem;
}

.hero h1.text-4xl {
    font-size: 2rem !important;
}

h1.text-3xl {
    font-size: 2rem !important;
}

.category-index-content > div {
    font-size: 1rem;
}