<?= $themeManager->getInlineCSS() ?>
        
/* Your additional styles using theme variables */
body {
    font-family: var(--app-font-body);
    background: var(--app-bg);
    color: var(--app-text);
    font-size: var(--app-font-size);
    line-height: var(--line-height, 1.6);
    margin: 0;
    padding: 0;
}

header {
    background: var(--secondary-bg);
    padding: 1rem;
    border-bottom: 1px solid var(--app-border);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--app-font-heading);
    font-size: var(--app-font-heading-size);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--article-padding, 20px);
}

.btn {
    background: var(--button-bg);
    color: var(--button-text);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--button-hover);
}

.theme-switcher {
    margin: 1rem 0;
    padding: 0.5rem;
    background: var(--secondary-bg);
    display: inline-block;
    border-radius: 4px;
}

/* Add more component styles as needed */