.sidebar-user {
    margin-top: 10px;
    padding: 13px;

    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 13px;
}

.sidebar-user__info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-user__details {
    min-width: 0;
    flex: 1;
}

.sidebar-user__name {
    color: var(--ink);

    font-size: 12px;
    font-weight: 700;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-user__role {
    margin-top: 2px;

    color: var(--ink-muted);

    font-size: 10px;
}

.sidebar-logout-form {
    margin-top: 12px;
    padding-top: 10px;

    border-top: 1px solid var(--line);
}

.sidebar-logout {
    width: 100%;

    min-height: 36px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 7px 9px;

    border-radius: 8px;

    background: transparent;

    color: var(--ink-muted);

    font-size: 12px;
    font-weight: 650;

    cursor: pointer;

    transition:
        background .15s ease,
        color .15s ease;
}

.sidebar-logout:hover {
    background: var(--danger-tint);
    color: var(--danger);
}

.sidebar-logout span:first-child {
    font-size: 15px;
}
/* ==========================================================================
   TONAFLO — MODERN APPLICATION DESIGN SYSTEM
   --------------------------------------------------------------------------
   Designed for:
   - Desktop application shell
   - Responsive tablet experience
   - Mobile-first navigation
   - Farmer / partner / investor workflows
   - Uber-style clarity and hierarchy
   - No external CSS dependencies
   ========================================================================== */

:root {
    /* Brand */
    --field: #0f5132;
    --field-dark: #073b25;
    --field-deep: #052d1d;
    --field-light: #176b43;
    --field-tint: #eaf4ed;

    /* Supporting */
    --harvest: #a46b00;
    --harvest-tint: #fff5dc;

    --danger: #b73434;
    --danger-tint: #fdecec;

    --blue: #2764a8;
    --blue-tint: #eaf2fb;

    /* Surfaces */
    --paper: #f6f8f6;
    --surface: #ffffff;
    --surface-soft: #f1f4f2;
    --surface-sunken: #e9eeeb;

    /* Typography */
    --ink: #17201b;
    --ink-soft: #354039;
    --ink-muted: #68736c;
    --ink-faint: #99a29d;

    /* Borders */
    --line: #e1e6e2;
    --line-strong: #ccd4ce;

    /* Radius */
    --radius-xs: 7px;
    --radius-sm: 9px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Layout */
    --header-height: 68px;
    --sidebar-width: 252px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(12, 30, 19, .04);
    --shadow-sm: 0 2px 8px rgba(12, 30, 19, .05);
    --shadow-md: 0 10px 30px rgba(12, 30, 19, .09);
    --shadow-lg: 0 20px 50px rgba(12, 30, 19, .14);

    /* Motion */
    --ease: cubic-bezier(.2, .8, .2, 1);
}


/* ==========================================================================
   RESET
   ========================================================================== */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;

    min-height: 100vh;

    background: var(--paper);
    color: var(--ink);

    font-family:
        'Inter',
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;

    font-size: 14px;
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;

    color: var(--ink);

    font-family:
        'Roboto Slab',
        Georgia,
        serif;

    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 30px;
    letter-spacing: -.7px;
}

h2 {
    font-size: 20px;
    letter-spacing: -.35px;
}

h3 {
    font-size: 15px;
}

h4 {
    font-size: 14px;
}

::selection {
    background: var(--field-tint);
    color: var(--field-dark);
}

:focus-visible {
    outline: 3px solid rgba(15, 81, 50, .20);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}


/* ==========================================================================
   PUBLIC HEADER
   ========================================================================== */

.site-header {
    height: var(--header-height);

    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header__bar {
    width: 100%;
    max-width: 1500px;
    height: 100%;

    margin: 0 auto;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


/* Brand */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--field-dark);

    font-family:
        'Roboto Slab',
        Georgia,
        serif;

    font-size: 19px;
    font-weight: 700;

    letter-spacing: -.4px;

    flex-shrink: 0;
}

.brand__mark {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--field);

    color: white;

    font-family:
        'Roboto Slab',
        Georgia,
        serif;

    font-size: 17px;
    font-weight: 700;

    box-shadow:
        0 5px 14px rgba(15, 81, 50, .16);
}


/* Header navigation */

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav > a,
.header-nav > button,
.header-nav form button {
    padding: 9px 12px;

    border-radius: var(--radius-sm);

    background: transparent;

    color: var(--ink-muted);

    font-size: 13px;
    font-weight: 600;

    transition:
        background .16s var(--ease),
        color .16s var(--ease);
}

.header-nav > a:hover,
.header-nav > button:hover,
.header-nav form button:hover {
    background: var(--surface-soft);
    color: var(--field-dark);
}

.header-nav__user {
    max-width: 160px;

    padding: 8px 12px;

    color: var(--ink-soft);

    font-size: 13px;
    font-weight: 600;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* ==========================================================================
   APPLICATION SHELL
   ========================================================================== */

.app-shell {
    min-height: calc(100vh - var(--header-height));
}


/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.app-sidebar {
    position: fixed;

    top: var(--header-height);
    bottom: 0;
    left: 0;

    width: var(--sidebar-width);

    padding: 22px 14px;

    background: var(--surface);

    border-right: 1px solid var(--line);

    overflow-y: auto;

    z-index: 900;

    scrollbar-width: thin;
    scrollbar-color: var(--line-strong) transparent;
}

.app-sidebar::-webkit-scrollbar {
    width: 5px;
}

.app-sidebar::-webkit-scrollbar-thumb {
    background: var(--line-strong);
    border-radius: 20px;
}


/* Sidebar groups */

.sidebar-section {
    margin-bottom: 25px;
}

.sidebar-label {
    padding: 0 12px;
    margin-bottom: 8px;

    color: var(--ink-faint);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;
    text-transform: uppercase;
}


/* Navigation */

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sidebar-link {
    min-height: 43px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 10px 12px;

    border-radius: 10px;

    color: #5d6961;

    font-size: 13px;
    font-weight: 600;

    transition:
        background .16s var(--ease),
        color .16s var(--ease),
        transform .16s var(--ease);
}

.sidebar-link:hover {
    background: var(--surface-soft);
    color: var(--field-dark);

    transform: translateX(1px);
}

.sidebar-link.is-active {
    background: var(--field-tint);
    color: var(--field-dark);

    font-weight: 700;
}

.sidebar-icon {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    color: #8c9690;

    font-size: 15px;

    flex-shrink: 0;
}

.sidebar-link.is-active .sidebar-icon {
    color: var(--field);
}


/* Sidebar user */

.sidebar-user {
    margin-top: 10px;
    padding: 14px;

    border: 1px solid var(--line);

    border-radius: 13px;

    background: var(--surface-soft);
}

.sidebar-user__name {
    color: var(--ink);

    font-size: 13px;
    font-weight: 700;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-user__role {
    margin-top: 3px;

    color: var(--ink-muted);

    font-size: 11px;
}


/* ==========================================================================
   MAIN APPLICATION AREA
   ========================================================================== */

.app-main {
    min-height: calc(100vh - var(--header-height));

    margin-left: var(--sidebar-width);
}

.app-main__inner {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 30px;
}


/* ==========================================================================
   MOBILE HEADER
   ========================================================================== */

.mobile-app-header {
    display: none;

    height: 60px;

    position: sticky;
    top: var(--header-height);

    z-index: 800;

    align-items: center;
    justify-content: space-between;

    padding: 0 15px;

    background: rgba(255, 255, 255, .97);

    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(14px);
}

.mobile-menu-button {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    padding: 0;

    background: var(--surface);

    border: 1px solid var(--line);

    border-radius: 10px;

    color: var(--ink);

    font-size: 18px;
}


/* ==========================================================================
   SIDEBAR MOBILE OVERLAY
   ========================================================================== */

.sidebar-overlay {
    display: none;

    position: fixed;
    inset: 0;

    background: rgba(7, 35, 22, .36);

    z-index: 850;

    backdrop-filter: blur(2px);
}

.sidebar-overlay.is-open {
    display: block;
}


/* ==========================================================================
   PAGE
   ========================================================================== */

.page {
    width: 100%;
    max-width: 1120px;

    margin: 0 auto;

    padding: 0;
}

.page--narrow {
    max-width: 480px;
}


/* Page heading */

.page-head,
.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}

.page-head p,
.page-header__subtitle {
    margin-top: 7px;

    max-width: 700px;

    color: var(--ink-muted);

    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================================================
   FLASH MESSAGES
   ========================================================================== */

.flash {
    width: 100%;

    padding: 13px 16px;

    margin-bottom: 22px;

    border: 1px solid;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;
}

.flash--info {
    background: var(--field-tint);
    border-color: #cde2d4;
    color: var(--field-dark);
}

.flash--error {
    background: var(--danger-tint);
    border-color: #f0c9c6;
    color: var(--danger);
}

.flash--warning {
    background: var(--harvest-tint);
    border-color: #ecd6af;
    color: #7a4d15;
}

.flash[hidden] {
    display: none;
}


/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
    background: var(--surface);

    border: 1px solid var(--line);

    border-radius: var(--radius-lg);

    padding: 22px;

    box-shadow: var(--shadow-xs);
}

.card + .card {
    margin-top: 14px;
}

.card:hover {
    box-shadow: var(--shadow-sm);
}

.card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin: -22px -22px 20px;

    padding: 18px 22px;

    border-bottom: 1px solid var(--line);
}

.card__title {
    font-size: 15px;
    font-weight: 750;
}

.card__description {
    margin-top: 4px;

    color: var(--ink-muted);

    font-size: 12px;
    line-height: 1.5;
}

.card__body {
    padding: 0;
}


/* ==========================================================================
   GRID SYSTEM
   ========================================================================== */

.grid {
    display: grid;
    gap: 16px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cols-main-side {
    grid-template-columns: 320px minmax(0, 1fr);

    align-items: start;
}


/* ==========================================================================
   FLEX UTILITIES
   ========================================================================== */

.stack > * + * {
    margin-top: 12px;
}

.stack-lg > * + * {
    margin-top: 24px;
}

.row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;
}

.wrap {
    flex-wrap: wrap;
}


/* ==========================================================================
   NAVIGATION CARDS
   ========================================================================== */

.nav-card {
    display: block;

    padding: 20px;

    background: var(--surface);

    border: 1px solid var(--line);

    border-radius: var(--radius-lg);

    transition:
        border-color .16s var(--ease),
        transform .16s var(--ease),
        box-shadow .16s var(--ease);
}

.nav-card:hover {
    border-color: var(--field);

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);
}

.nav-card h3 {
    margin-bottom: 5px;
}

.nav-card p {
    color: var(--ink-muted);

    font-size: 13px;
    line-height: 1.55;
}


/* ==========================================================================
   EMPTY STATES
   ========================================================================== */

.empty-state {
    padding: 48px 24px;

    text-align: center;

    color: var(--ink-muted);

    font-size: 13px;
}


/* ==========================================================================
   FORMS
   ========================================================================== */

.field {
    display: block;

    margin-bottom: 16px;
}

.field:last-child {
    margin-bottom: 0;
}

.field label,
.field-label {
    display: block;

    margin-bottom: 6px;

    color: var(--ink);

    font-size: 12px;
    font-weight: 650;
}

input,
select,
textarea {
    width: 100%;

    padding: 10px 12px;

    border: 1px solid var(--line-strong);

    border-radius: var(--radius-sm);

    background: var(--surface);

    color: var(--ink);

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .15s var(--ease),
        box-shadow .15s var(--ease);
}

input {
    min-height: 42px;
}

select {
    min-height: 42px;
}

textarea {
    min-height: 100px;

    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: var(--ink-faint);
}

input:hover,
select:hover,
textarea:hover {
    border-color: #b9c2bb;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;

    border-color: var(--field);

    box-shadow:
        0 0 0 3px rgba(15, 81, 50, .10);
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    min-height: auto;

    accent-color: var(--field);
}

.checkbox-row {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--ink-soft);

    font-size: 13px;
}

.checkbox-row input {
    width: 16px;
    height: 16px;
}

.field-hint {
    margin-top: 5px;

    color: var(--ink-muted);

    font-size: 11px;
    line-height: 1.5;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row > * {
    flex: 1;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 9px 15px;

    border: 1px solid transparent;

    border-radius: var(--radius-sm);

    font-family: inherit;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background .16s var(--ease),
        border-color .16s var(--ease),
        color .16s var(--ease),
        transform .16s var(--ease),
        box-shadow .16s var(--ease);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}


/* Primary */

.btn-primary {
    background: var(--field);
    color: #fff;

    box-shadow:
        0 4px 10px rgba(15, 81, 50, .12);
}

.btn-primary:hover {
    background: var(--field-dark);

    box-shadow:
        0 6px 16px rgba(15, 81, 50, .16);
}


/* Secondary */

.btn-secondary {
    background: var(--surface);

    border-color: var(--line-strong);

    color: var(--ink);
}

.btn-secondary:hover {
    border-color: var(--field);
    color: var(--field-dark);
}


/* Danger */

.btn-danger {
    background: var(--surface);

    border-color: #f0cecb;

    color: var(--danger);
}

.btn-danger:hover {
    background: var(--danger-tint);
}


/* Ghost */

.btn-ghost {
    min-height: 36px;

    padding: 7px 9px;

    background: transparent;

    color: var(--ink-muted);
}

.btn-ghost:hover {
    background: var(--surface-soft);
    color: var(--field-dark);
}


/* Sizes */

.btn-sm {
    min-height: 34px;

    padding: 7px 11px;

    font-size: 12px;
}

.btn-lg {
    min-height: 46px;

    padding: 11px 18px;

    font-size: 14px;
}

.btn-block {
    width: 100%;
}

.btn[disabled] {
    opacity: .5;

    cursor: not-allowed;

    transform: none !important;

    box-shadow: none;
}


/* ==========================================================================
   STATUS BADGES
   ========================================================================== */

.badge {
    display: inline-flex;
    align-items: center;

    min-height: 26px;

    padding: 5px 9px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 750;

    line-height: 1;

    white-space: nowrap;

    text-transform: capitalize;
}

.badge::before {
    content: "";

    width: 6px;
    height: 6px;

    margin-right: 6px;

    border-radius: 50%;

    background: currentColor;
}

.badge--neutral {
    background: var(--surface-sunken);
    color: var(--ink-muted);
}

.badge--positive {
    background: var(--field-tint);
    color: var(--field-dark);
}

.badge--warning {
    background: var(--harvest-tint);
    color: #7a4d15;
}

.badge--danger {
    background: var(--danger-tint);
    color: var(--danger);
}


/* ==========================================================================
   CHIPS
   ========================================================================== */

.chip-field {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.chip {
    position: relative;

    cursor: pointer;
}

.chip input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}

.chip span {
    display: inline-flex;
    align-items: center;

    min-height: 35px;

    padding: 7px 12px;

    border: 1px solid var(--line-strong);

    border-radius: 999px;

    background: var(--surface);

    color: var(--ink-soft);

    font-size: 12px;
    font-weight: 600;

    transition:
        background .13s var(--ease),
        border-color .13s var(--ease),
        color .13s var(--ease);
}

.chip span:hover {
    border-color: var(--field);
}

.chip input:checked ~ span {
    background: var(--field);

    border-color: var(--field);

    color: #fff;
}

.chip input:focus-visible ~ span {
    outline: 3px solid rgba(15, 81, 50, .18);
    outline-offset: 2px;
}


/* ==========================================================================
   ONBOARDING
   ========================================================================== */

.progress-track {
    height: 7px;

    overflow: hidden;

    background: var(--surface-sunken);

    border-radius: 999px;
}

.progress-fill {
    height: 100%;

    background: var(--field);

    border-radius: inherit;

    transition: width .3s var(--ease);
}

.wizard-step {
    display: none;
}

.wizard-step.is-active {
    display: block;
}

.skill-row {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 9px 0;

    border-bottom: 1px solid var(--line);

    font-size: 13px;
}

.skill-row:last-child {
    border-bottom: 0;
}

.skill-row select {
    width: auto;

    min-width: 120px;

    min-height: 36px;

    padding: 7px 9px;

    font-size: 12px;
}

.skill-category-label {
    margin: 20px 0 8px;

    color: var(--ink-muted);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .05em;
    text-transform: uppercase;
}

.skill-category-label:first-child {
    margin-top: 0;
}

.scroll-panel {
    max-height: 350px;

    overflow-y: auto;

    padding-right: 6px;

    scrollbar-width: thin;
}


/* ==========================================================================
   MARKETPLACE
   ========================================================================== */

.listing-card {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.listing-price {
    color: var(--field-dark);

    font-family:
        'Roboto Slab',
        Georgia,
        serif;

    font-size: 22px;
    font-weight: 700;
}

.listing-price small {
    color: var(--ink-muted);

    font-family: inherit;

    font-size: 11px;
    font-weight: 400;
}


/* ==========================================================================
   DATA / TABLES
   ========================================================================== */

.table-wrap {
    width: 100%;

    overflow-x: auto;

    border: 1px solid var(--line);

    border-radius: var(--radius-md);

    background: var(--surface);
}

table {
    width: 100%;

    border-collapse: collapse;

    font-size: 13px;
}

th {
    padding: 11px 14px;

    background: var(--surface-soft);

    border-bottom: 1px solid var(--line);

    color: var(--ink-muted);

    font-size: 10px;
    font-weight: 800;

    text-align: left;

    letter-spacing: .05em;

    text-transform: uppercase;

    white-space: nowrap;
}

td {
    padding: 13px 14px;

    border-bottom: 1px solid var(--line);

    color: var(--ink-soft);

    vertical-align: middle;
}

tbody tr:last-child td {
    border-bottom: 0;
}

tbody tr:hover {
    background: #fafcfb;
}


/* ==========================================================================
   STAT CARDS
   ========================================================================== */

.stat-card {
    min-width: 0;

    padding: 18px;

    background: var(--surface);

    border: 1px solid var(--line);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-xs);
}

.stat-card__label {
    color: var(--ink-muted);

    font-size: 11px;
    font-weight: 650;
}

.stat-card__value {
    margin-top: 7px;

    color: var(--ink);

    font-family:
        'Roboto Slab',
        Georgia,
        serif;

    font-size: 25px;
    font-weight: 700;

    line-height: 1.1;
}

.stat-card__meta {
    margin-top: 6px;

    color: var(--ink-faint);

    font-size: 11px;
}


/* ==========================================================================
   LISTS
   ========================================================================== */

.card-list {
    overflow: hidden;

    background: var(--surface);

    border: 1px solid var(--line);

    border-radius: var(--radius-lg);
}

.card-list > * + * {
    border-top: 1px solid var(--line);
}

.card-list__row {
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding: 14px 18px;

    transition: background .15s var(--ease);
}

.card-list__row:hover {
    background: #fafcfb;
}


/* ==========================================================================
   AVATARS
   ========================================================================== */

.avatar {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--field-tint);

    color: var(--field-dark);

    font-size: 13px;
    font-weight: 750;
}

.avatar--sm {
    width: 32px;
    height: 32px;

    font-size: 11px;
}

.avatar--lg {
    width: 50px;
    height: 50px;

    font-size: 16px;
}


/* ==========================================================================
   DIVIDERS
   ========================================================================== */

.divider {
    height: 1px;

    margin: 20px 0;

    background: var(--line);
}


/* ==========================================================================
   TEXT UTILITIES
   ========================================================================== */

.muted {
    color: var(--ink-muted);
}

.faint {
    color: var(--ink-faint);
}

.small {
    font-size: 12px;
}

.tiny {
    font-size: 11px;
}

.center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-success {
    color: var(--field-dark);
}

.text-warning {
    color: #7a4d15;
}

.text-danger {
    color: var(--danger);
}


/* ==========================================================================
   SPACING
   ========================================================================== */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 6px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 28px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 6px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 28px; }

.ml-1 { margin-left: 6px; }
.ml-2 { margin-left: 12px; }

.p-0 { padding: 0; }
.p-1 { padding: 6px; }
.p-2 { padding: 12px; }
.p-3 { padding: 20px; }

.hidden {
    display: none !important;
}

.w-full {
    width: 100%;
}


/* ==========================================================================
   MOBILE BOTTOM NAVIGATION
   ========================================================================== */

.mobile-bottom-nav {
    display: none;
}


/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .app-main__inner {
        padding: 25px;
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ==========================================================================
   RESPONSIVE — MOBILE SIDEBAR
   ========================================================================== */

@media (max-width: 1000px) {

    .app-sidebar {
        transform: translateX(-105%);

        transition:
            transform .28s var(--ease);

        box-shadow: var(--shadow-lg);
    }

    .app-sidebar.is-open {
        transform: translateX(0);
    }

    .app-main {
        margin-left: 0;
    }

    .mobile-app-header {
        display: flex;
    }

    .app-main__inner {
        padding: 24px 20px 90px;
    }

    .grid-3 {
        grid-template-columns: repeat(2,