/* ═══════════════════════════════════════════════════════════════════════════════
   AEINDRIAGRO - GLOBAL CSS OVERRIDES & SYSTEM DEFAULTS
   Industry Standard: Single Source of Truth for All Global Styling
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   0. CSS CONFLICT PREVENTION (Bootstrap override)
   ───────────────────────────────────────────────────────────────────────────── */
/* Prevent Bootstrap and other libraries from overriding navbar */
.navbar {
    background: inherit;
    border: inherit;
    box-shadow: inherit;
}

/* Force white text on top-level navbar elements */
.top-navbar,
.top-navbar .nav-btn,
.top-navbar .dropdown-btn,
.top-navbar .navbar-brand,
.top-navbar .chevron,
.top-navbar .nav-icon,
.top-navbar .navbar-timestamp,
.top-navbar .timestamp-date,
.top-navbar .timestamp-time {
    color: #ffffff;
}

/* Prevent .nav-link from Bootstrap interfering */
.top-navbar .nav-link {
    color: inherit;
}

/* Prevent .top-bar from being used */
.top-bar {
    display: none !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* Typography */
    --base-font-size: 13px;
    --body-font-size: 14px;
    --h1-size: 16px;
    --h2-size: 15px;
    --h3-size: 14px;
    --h4-size: 13px;
    --h5-size: 12px;
    --h6-size: 11px;
    --navbar-brand-size: 18px;
    --nav-item-size: 14px;
    
    /* Layout */
    --navbar-height: 48px;
    --navbar-z-index: 1000;
    --navbar-fixed-z-index: 9999;
    --timestamp-z-index: 10000;
    --dropdown-z-index: 2000;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. RESET & NORMALIZATION (Selective, not aggressive)
   ───────────────────────────────────────────────────────────────────────────── */
html {
    font-size: var(--base-font-size);
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-size: var(--body-font-size);
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. TYPOGRAPHY SYSTEM
   ───────────────────────────────────────────────────────────────────────────── */
body,
input,
select,
textarea,
button,
table,
td,
th,
label,
p {
    font-size: var(--body-font-size);
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

/* ─────────────────────────────────────────────────────────────────────────────
   4. NAVBAR & FIXED ELEMENTS
   ───────────────────────────────────────────────────────────────────────────── */
.top-navbar,
nav,
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: var(--navbar-fixed-z-index);
}

/* ─────────────────────────────────────────────────────────────────────────────
   5. CONTENT AREA RESETS
   ───────────────────────────────────────────────────────────────────────────── */
main,
.content {
    padding: 0;
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. NAVBAR TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */
.navbar-brand {
    font-size: var(--navbar-brand-size);
}

.dropdown-btn,
.nav-link,
.nav-btn {
    font-size: var(--nav-item-size);
}

/* ─────────────────────────────────────────────────────────────────────────────
   7. FIXED ELEMENTS (Timestamp, Modals, etc)
   ───────────────────────────────────────────────────────────────────────────── */
.page-timestamp,
.modal,
.dialog,
[role="dialog"] {
    z-index: var(--timestamp-z-index);
}

/* ─────────────────────────────────────────────────────────────────────────────
   8. DROPDOWN MENU TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */
/* Force bold large font on all navbar dropdown items */
.top-navbar .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 900;
    color: #050505;
    text-decoration: none;
}
.top-navbar .dropdown-menu .dropdown-item:hover {
    color: #4f46e5;
    background: #eef2ff;
    text-decoration: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   9. UTILITY CLASSES
   ───────────────────────────────────────────────────────────────────────────── */
.no-margin { margin: 0 !important; }
.no-padding { padding: 0 !important; }
.no-scroll { overflow: hidden !important; }

/* ═══════════════════════════════════════════════════════════════════════════════
   END OF GLOBAL OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════════ */
