/* === MMF Excalidraw Branding === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap');

/* Globale Typography — Poppins überall */
html, body, .excalidraw, .excalidraw *,
button, input, textarea, select {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* MMF Light Theme */
.excalidraw {
    --color-primary: #E30613;
    --color-primary-darker: #C00510;
    --color-primary-darkest: #A00408;
    --color-primary-light: #FCE4E6;
    --color-primary-contrast-offset: #C00510;
    --color-selection: #E30613;
    --text-primary-color: #1F2730;
    --focus-highlight-color: #FCE4E6;
    --button-special-active-bg-color: #FCE4E6;
}

/* MMF Dark Theme */
.excalidraw.theme--dark {
    --color-primary: #FF1A2E;
    --color-primary-darker: #E30613;
    --color-primary-darkest: #C00510;
    --color-primary-light: #5C1A1F;
    --color-primary-contrast-offset: #FF1A2E;
    --color-selection: #FF1A2E;
    --default-bg-color: #1F2730;
    --island-bg-color: #2D3B48;
    --input-bg-color: #2D3B48;
    --text-primary-color: #FFFFFF;
    --focus-highlight-color: #5C1A1F;
    --button-special-active-bg-color: #5C1A1F;
}

/* Custom Scrollbars im MMF-Style */
.excalidraw ::-webkit-scrollbar { width: 8px; height: 8px; }
.excalidraw ::-webkit-scrollbar-track { background: transparent; }
.excalidraw ::-webkit-scrollbar-thumb { background: #E0E0E0; border-radius: 4px; }
.excalidraw ::-webkit-scrollbar-thumb:hover { background: #999999; }
.excalidraw.theme--dark ::-webkit-scrollbar-thumb { background: #2D3B48; }
