/* /mobile/styles/base.css */
/* Base styles adapted to match Malfunctional's dark theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile scrolling fixes */
html {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overflow-x: hidden;
}

* {
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a2332 0%, #2a3748 50%, #1a2332 100%);
    min-height: 100vh;
    padding: 0;
    color: white;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* Color palette variables matching main site */
:root {
    /* Dark blue gradient colors */
    --bg-primary: #1a2332;
    --bg-secondary: #2a3748;
    --bg-tertiary: #3e4d5f;
    
    /* Blue accent colors */
    --blue-primary: #3b82f6;
    --blue-secondary: #1d4ed8;
    --blue-accent: #60a5fa;
    
    /* Status colors */
    --status-out-primary: #dc2626;
    --status-out-secondary: #991b1b;
    --status-late-primary: #f59e0b;
    --status-late-secondary: #d97706;
    
    /* Mobile specific colors */
    --mobile-bg: #0f172a;
    --mobile-card: #1e293b;
    --mobile-border: #334155;
    --mobile-text: #f1f5f9;
    --mobile-text-muted: #64748b;
}

/* Site footer for licensing notice - FIXED SCROLLING */
.site-footer {
    padding: 12px 16px;
    text-align: center;
    font-size: 12px;
    color: var(--mobile-text-muted);
    border-top: 1px solid var(--mobile-border);
    background: var(--bg-primary);
    position: relative;
    margin-top: auto;
    z-index: 1000;
}

.site-footer a {
    color: var(--mobile-text-muted);
    text-decoration: underline;
}

.cc-badge {
    height: 32px;
    margin-left: 8px;
    vertical-align: middle;
}
