/* ============================================
   style.css — Global Styles
   To See Roll Restaurant System
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #111111;
    color: #ffffff;
    min-height: 100vh;
}

/* --- TSR Brand Colors --- */
:root {
    --tsr-orange: #d35400;
    --tsr-orange-light: #e67e22;
    --tsr-dark: #111111;
    --tsr-dark2: #1a1a1a;
    --tsr-dark3: #222222;
    --tsr-gray: #888888;
    --tsr-light: #f0f0f0;
    --success-green: #27ae60;
    --danger-red: #e74c3c;
}