/* ============================================================
   blank.css 
   NUR zContent-Systemklassen für den TinyMCE-%CONTENT%-Bereich
   Layout-Klassen → blank.css
   ============================================================ */

/* ── Editor-Body: wenn dunkler Hintergrund auf der Website für TinyMCE-Vorschau ── */
html, body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
}

/* ── Basis HTML-Elemente ──────────────────────────────────── */

p {
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; color: #1e88e5; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.875rem; color: #2c3e50; }
h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem; color: #2c3e50; }
h4 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; color: #2c3e50; }
h5 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: #2c3e50; }
h6 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: #2c3e50; }

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

a {
    color: #1e88e5;
    text-decoration: none;
}

a:hover {
    color: #1565c0;
    text-decoration: underline;
}

strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

ul li::marker {
    color: #1e88e5;
}

ol li::marker {
    color: #1e88e5;
    font-weight: 700;
}

hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 2rem 0;
}

blockquote {
    border-left: 4px solid #1e88e5;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #64748b;
    font-style: italic;
}

blockquote p {
    margin-bottom: 0.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

table th {
    background: #1e88e5;
    color: white;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

table tr:hover td {
    background: #f5f5f5;
}

table tr:last-child td {
    border-bottom: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* ── zContent Systemklassen ───────────────────────────────── */

/* Standardtext */
.normal {
    font-size: 1rem;
    line-height: 1.6;
}

.text {
    font-size: 1rem;
    line-height: 1.6;
}

.pokal {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2c3e50;
}

/* Überschriften */
.ueberschrift {
    font-size: 2rem;
    font-weight: 700;
    color: #1e88e5;
    margin-bottom: 1rem;
}

.ueberschrift2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.ueberschrift3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Links */
.link {
    color: #1e88e5;
    text-decoration: none;
    transition: color 0.3s;
}

.link:hover {
    color: #1565c0;
    text-decoration: underline;
}

.link_aktiv {
    color: #1565c0;
    font-weight: 600;
}

/* Formular / Tabellen-Hilfsklassen */
.auswahl {
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.25rem;
}

.auswahl:focus {
    outline: none;
    border-color: #1e88e5;
}

.bemerkung {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
}

/* ── LSB-spezifische Editor-Klassen ───────────────────────── */

/* Info-Boxen */
.info-box {
    background: #f5f5f5;
    padding: 1rem;
    border-left: 3px solid #1e88e5;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}

.warning-box {
    background: #fff3cd;
    padding: 1rem;
    border-left: 3px solid #ffc107;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}

.success-box {
    background: #d4edda;
    padding: 1rem;
    border-left: 3px solid #28a745;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}

/* Textformatierung */
.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    color: #2c3e50;
}

.text-muted {
    color: #64748b;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* Buttons / Links */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1565c0, #1e88e5);
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #1e88e5;
    color: #1e88e5;
    background: transparent;
}

.btn-outline:hover {
    background: #1e88e5;
    color: white;
    text-decoration: none;
}

/* Highlight-Texte */
.highlight {
    background: #fff3cd;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.highlight-blue {
    background: #e3f2fd;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: #1565c0;
}

/* Spacing */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

