/*
Theme Name: WP Emergency Tactical
Description: A high-contrast, tactical PWA theme for Emergency Response.
Author: Remco Groothoff
Version: 1.0
*/

:root {
    --color-primary: #D32F2F;
    --color-bg-dark: #171212;
    --color-surface: #2C2C2C;
    --color-blue: #1976D2;
    --color-green: #388E3C;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-dark);
    color: white;
}

/* Scrollbar Styling for Webkit */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a; 
}
::-webkit-scrollbar-thumb {
    background: #424242; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}