@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Modern Light Theme Only */
    --bg-app: #f8fafc;        /* Slate 50 */
    --bg-card: #ffffff;       /* Pure White */
    --bg-accent: #f1f5f9;     /* Slate 100 */
    
    --text-primary: #0f172a;  /* Slate 900 */
    --text-secondary: #475569;/* Slate 600 */
    --text-muted: #94a3b8;    /* Slate 400 */
    
    --color-primary: #2563eb;       /* Royal Blue */
    --color-primary-hover: #1d4ed8;
    --color-primary-light: #eff6ff;
    
    --color-success: #10b981;       /* Emerald */
    --color-success-light: #ecfdf5;
    
    --color-warning: #f59e0b;       /* Amber */
    --color-warning-light: #fef3c7;
    
    --color-danger: #ef4444;        /* Rose */
    --color-danger-light: #fef2f2;
    
    --color-border: #e2e8f0;        /* Slate 200 */
    
    /* Soft shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: #f1f5f9;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    overflow: hidden;
}

#app-container {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-app);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
