/* Container für alle Service-Tool Ausgaben */
.st-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #3c434a;
    line-height: 1.6;
    
    /* ZENTRIERUNG ERZWINGEN */
    display: block !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important; /* Verhindert, dass das Theme das Element nach links schiebt */
    
    padding: 0 20px;
    clear: both; /* Sorgt dafür, dass keine umfließenden Elemente die Zentrierung stören */
}

/* Card-Design */
.st-card {
    background: #ffffff;
    border: 1px solid #dcdcde;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

/* Überschriften */
.st-main-title {
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0f0f1;
    color: #1d2327;
}

/* Grid-System für Stammdaten (Impressum/Kontakt) */
.st-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.st-data-box {
    background: #f6f7f7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2271b1;
}

.st-data-box h4 {
    margin: 0 0 10px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2271b1;
}

/* Formular Styling für Kontakt */
.service-tool-form-wrapper {
    background: #f6f7f7;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.service-tool-form input, 
.service-tool-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    margin-bottom: 15px;
    background: #fff;
}

.service-tool-form button {
    background: #2271b1;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Badge für Jugendschutz */
.st-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #1d2327;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
}

/* Footer-Bereich für Registerangaben */
.st-footer-info {
    font-size: 0.9em;
    color: #646970;
    border-top: 1px solid #dcdcde;
    margin-top: 30px;
    padding-top: 20px;
}
/* In service-tool-frontend.css ergänzen */
.st-data-box h4 .dashicons {
    vertical-align: middle;
    margin-right: 5px;
    color: var(--st-primary); /* Dein Blauwert */
}