/* Biến & nền tảng – dùng cho mọi trang */
:root {
    --primary: #0f62fe;
    --primary-hover: #0043ce;
    --primary-bg: #edf5ff;
    --danger: #da1e28;
    --danger-bg: #fff1f1;
    --success: #198038;
    --success-bg: #e8f5e9;
    --white: #ffffff;
    --bg: #f4f4f4;
    --bg-elevated: #ffffff;
    --border: #e0e0e0;
    --border-strong: #c6c6c6;
    --text: #161616;
    --text-secondary: #525252;
    --text-tertiary: #8d8d8d;
    --radius: 6px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --font: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    margin: 0;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.5;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
