/**
 * Base Styles - Variables, Reset & Typography
 * Golden Book Admin v2
 */

/* CSS Custom Properties (Design Tokens) */
:root {
    --primary: #1a1a1a;
    --secondary: #8b7355;
    --bg: #fafafa;
    --card: #ffffff;
    --border: #e5e5e5;
    --text: #333;
    --text-light: #666;
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
}

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

/* Base Typography & Body */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Links */
a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
