/*
Theme Name: RSS Generator
Theme URI: https://rss.meelo.ch
Author: Patrick Salzmann
Description: Schlankes Standalone-Theme für den RSS Generator. Gibt dem Plugin-Dashboard die volle Leinwand und kommt ohne überflüssiges Theme-Chrome aus. Ideal für eigenständige Installationen.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rssgen-theme
Tags: full-site-editing, one-column, blog
*/

html, body {
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #0f1722;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, system-ui, sans-serif;
    min-height: 100vh;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-color-scheme: dark) {
    html, body { background: #0c111b; color: #e6e9ee; }
}

a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

.rssgen-theme-shell {
    display: flex; flex-direction: column;
    min-height: 100vh;
}

.rssgen-theme-content { flex: 1; }

.rssgen-theme-fallback-page {
    max-width: 720px; margin: 60px auto; padding: 32px;
    background: #fff; border-radius: 12px;
    box-shadow: 0 1px 3px rgba(15,23,42,.08);
}
.rssgen-theme-fallback-page h1 { margin-top: 0; }
@media (prefers-color-scheme: dark) {
    .rssgen-theme-fallback-page { background: #131a26; box-shadow: 0 1px 3px rgba(0,0,0,.4); }
}
