﻿/*Purpose
========
Colors (ONLY 2)
Fonts
Resets
Global helpers
Media-safe base rules
*/
/* ===============================
   ISoft ERP – THEME (GLOBAL)
   =============================== */

:root {
    /* ---- LOCKED COLOR SYSTEM ---- */
    --erp-bg: #f5f7fb; /* Background */
    --erp-strip: #0b5ed7; /* Window strip */

    --erp-text: #1f2937;
    --erp-muted: #6b7280;
    --erp-border: #e5e7eb;
}

/* ---- RESET / BASE ---- */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background: var(--erp-bg);
    color: var(--erp-text);
    overflow-x: auto;
    overflow-y: auto;
}


/* ---- LINKS ---- */
a {
    text-decoration: none;
    color: inherit;
}

/* ---- UTILITIES (LIMITED) ---- */
.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: .25rem;
}

.mt-2 {
    margin-top: .5rem;
}

.mb-2 {
    margin-bottom: .5rem;
}
