/*
Theme Name:        CRM WL Backbone
Theme URI:         https://example.com/
Author:            CRM White Label
Author URI:        https://example.com/
Description:       Minimaal backbone-thema voor WordPress-installaties waar de CRM White Label plugin de gehele frontend rendert. Dit thema doet bewust niets: het bestaat alleen om WordPress te laten draaien. Bezoekers worden automatisch doorgestuurd naar /platform-login.
Version:           1.0.0
Requires at least: 6.0
Requires PHP:      8.1
License:           Proprietary
Text Domain:       crm-wl-backbone
Tags:              minimal, custom-logo
*/

/* ════════════════════════════════════════════════════════════════════
   Backbone-thema — minimale styling
   De CRM-plugin levert z'n eigen volledige UI via templates/.
   Dit bestand is alleen voor de zeldzame gevallen waarin het thema
   tóch zichtbaar wordt (bv. /wp-login.php, /readme.html).
   ════════════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    color: #1f2937;
    background: #f9fafb;
}

.backbone-shell {
    max-width: 560px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.backbone-shell h1 { font-size: 1.5rem; margin-top: 0; }
.backbone-shell p  { color: #6b7280; }
.backbone-shell a  {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.625rem 1.25rem;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}
.backbone-shell a:hover { background: #1d4ed8; }

@media (prefers-color-scheme: dark) {
    body { background: #0f172a; color: #f1f5f9; }
    .backbone-shell { background: #1e293b; border-color: #334155; }
    .backbone-shell p { color: #94a3b8; }
}
