/* Aussie Air Business Platform - shared design system */

:root {
    --navy: #0f1f38;
    --navy-light: #16294a;
    --navy-lighter: #1e3357;

    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-soft: #eaf1fe;

    --bg: #f4f6f9;
    --surface: #ffffff;
    --border: #e3e7ee;
    --border-strong: #d3d9e3;

    --text: #17212f;
    --text-muted: #667085;
    --text-faint: #98a2b3;

    --green-bg: #e8f8ee;
    --green-text: #0d7a3f;
    --amber-bg: #fef6e6;
    --amber-text: #96650a;
    --red-bg: #fdedec;
    --red-text: #b3261e;
    --gray-bg: #eef0f3;
    --gray-text: #667085;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 6px 16px rgba(16, 24, 40, 0.07), 0 1px 3px rgba(16, 24, 40, 0.05);
    --shadow-lg: 0 16px 32px rgba(16, 24, 40, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* Header */

header {
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-lighter) 100%);
    color: white;
    padding: 18px 28px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1240px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    background-image: url('/static/logo.jpg?v=1');
    background-size: 87px 78px;
    background-position: -24px -1px;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.brand h1 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.brand .subtitle {
    margin: 1px 0 0 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

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

nav a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

nav a.active {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.72);
    font-family: inherit;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 14px;
    margin-top: 0;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown.open .nav-dropdown-toggle {
    background: rgba(255, 255, 255, 0.14);
    color: white;
    box-shadow: none;
    transform: none;
}

.nav-caret {
    font-size: 10px;
    margin-left: 2px;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: 6px;
    z-index: 50;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 600;
    font-size: 13.5px;
    text-decoration: none;
    transition: background 0.12s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--accent-soft);
}

.nav-dropdown-menu a.active {
    background: var(--accent-soft);
    color: var(--accent);
}

.user-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
}

.user-bar .user-name {
    font-weight: 600;
    color: white;
}

.user-bar a.user-name {
    text-decoration: none;
}

.user-bar .user-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12.5px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.user-bar .user-link:hover {
    color: white;
}

.user-bar form {
    display: inline;
}

.user-bar button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12.5px;
    transition: background 0.15s ease;
}

.user-bar button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Layout */

main {
    max-width: 1440px;
    margin: 32px auto;
    padding: 0 20px 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.card h2 {
    margin: 0 0 18px 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.005em;
    color: var(--text);
}

h1, h2, h3 {
    font-family: inherit;
}

/* Notices */

.notice {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-success {
    background: var(--green-bg);
    color: var(--green-text);
    border: 1px solid rgba(13, 122, 63, 0.15);
}

.notice-error {
    background: var(--red-bg);
    color: var(--red-text);
    border: 1px solid rgba(179, 38, 30, 0.15);
}

/* Forms */

label {
    display: block;
    font-weight: 600;
    font-size: 12.5px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    margin-top: 16px;
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea {
    min-height: 70px;
    resize: vertical;
}

/* Label scanning (Add Unit) */

.label-scan {
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 20px;
    background: var(--bg);
}

.label-scan input[type="file"] {
    padding: 8px;
    font-size: 13px;
    background: var(--surface);
}

button.secondary-btn {
    background: var(--surface);
    color: var(--accent);
    border: 1px solid var(--border-strong);
    box-shadow: none;
    margin-top: 10px;
}

button.secondary-btn:hover {
    background: var(--accent-soft);
    box-shadow: none;
    transform: none;
}

button.secondary-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

button {
    margin-top: 18px;
    padding: 10px 20px;
    border: 0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-sm);
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

button:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

/* Tables */

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: left;
    padding: 13px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

th {
    background: var(--bg);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

th.sortable {
    cursor: pointer;
    user-select: none;
}

th.sortable:hover {
    color: var(--text);
}

.sort-indicator {
    display: inline-block;
    margin-left: 2px;
}

tbody tr {
    transition: background 0.1s ease;
}

tbody tr:hover {
    background: #fafbfd;
}

.table-wrap {
    overflow-x: auto;
    scrollbar-width: auto;
}

.table-wrap::-webkit-scrollbar {
    height: 12px;
}

.table-wrap::-webkit-scrollbar-track {
    background: var(--bg);
    border-radius: 6px;
}

.table-wrap::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 6px;
}

.table-wrap::-webkit-scrollbar-thumb:hover {
    background: var(--text-faint);
}

.num {
    text-align: right;
}

.description-cell {
    max-width: 220px;
    white-space: normal;
    word-wrap: break-word;
}

/* Badges */

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.badge-current,
.badge-pass,
.badge-ok,
.badge-active,
.badge-receive {
    background: var(--green-bg);
    color: var(--green-text);
}

.badge-due_soon,
.badge-never_checked,
.badge-restock_soon,
.badge-over,
.badge-repair,
.badge-return {
    background: var(--amber-bg);
    color: var(--amber-text);
}

.badge-overdue,
.badge-fail,
.badge-repair_required,
.badge-leak_detected,
.badge-quarantined,
.badge-low,
.badge-lost,
.badge-inactive {
    background: var(--red-bg);
    color: var(--red-text);
}

.badge-retired,
.badge-none,
.badge-adjustment {
    background: var(--gray-bg);
    color: var(--gray-text);
}

.badge-take {
    background: var(--accent-soft);
    color: var(--accent);
}

.text-muted {
    color: var(--text-faint);
}

/* Summary cards */

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.summary-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.filter-card {
    cursor: pointer;
    transition: box-shadow 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
    user-select: none;
}

.filter-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.filter-card.filter-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft), var(--shadow-md);
}

.active-filter-bar {
    display: none;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.active-filter-bar.visible {
    display: flex;
}

.active-filter-bar strong {
    color: var(--text);
}

.clear-filter-btn {
    margin-top: 0;
    padding: 4px 10px;
    font-size: 12px;
    background: var(--gray-bg);
    color: var(--text-muted);
    box-shadow: none;
}

.clear-filter-btn:hover {
    background: var(--border-strong);
    box-shadow: none;
    transform: none;
    color: var(--text);
}

.summary-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.summary-card h3 {
    margin: 0 0 8px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.summary-number {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.summary-card > div:last-child {
    margin-top: 4px;
    font-size: 12.5px;
    color: var(--text-faint);
    font-weight: 500;
}

.summary-overdue::before, .summary-low::before { background: #d92d20; }
.summary-due::before { background: #dc9a06; }
.summary-restock::before { background: #dc9a06; }
.summary-current::before, .summary-ok::before { background: #12a150; }
.summary-never::before { background: #98a2b3; }
.summary-over::before { background: #dc9a06; }
.summary-take::before { background: var(--accent); }
.summary-adjustment::before { background: #98a2b3; }

/* Inline update forms (inventory) */

.stock-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.adjust-form {
    display: flex;
    gap: 6px;
    align-items: center;
}

.adjust-form span {
    font-size: 11.5px;
    color: var(--text-faint);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    width: 52px;
    flex-shrink: 0;
}

.adjust-form input {
    width: 68px;
    padding: 7px 9px;
    font-size: 13px;
}

.adjust-form button {
    margin-top: 0;
    padding: 7px 12px;
    font-size: 12.5px;
}

.receive-form button {
    background: #12a150;
}

.receive-form button:hover {
    background: #0d7a3f;
}

.thresholds-form input {
    width: 56px;
}

.return-warehouse-form button {
    background: var(--amber-text);
}

.return-warehouse-form button:hover {
    background: #7a5208;
}

.edit-details[open] {
    min-width: 220px;
}

.edit-details summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: var(--accent);
    list-style: none;
}

.edit-details summary::-webkit-details-marker {
    display: none;
}

.edit-details summary::before {
    content: "\25B8  ";
    font-size: 11px;
}

.edit-details[open] summary::before {
    content: "\25BE  ";
}

.edit-details form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.edit-details label {
    font-size: 11px;
    margin-top: 6px;
    margin-bottom: 2px;
}

.edit-details input {
    padding: 7px 9px;
    font-size: 13px;
    width: 100%;
}

.edit-details button {
    margin-top: 10px;
    padding: 7px 12px;
    font-size: 12.5px;
}

.remove-item-form {
    margin-top: 6px;
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

.remove-item-form button {
    background: var(--red-bg);
    color: var(--red-text);
    box-shadow: none;
}

.remove-item-form button:hover {
    background: #fbdad7;
    box-shadow: none;
    transform: none;
}

.removed-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.removed-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
}

.removed-item-row form {
    display: inline;
}

.removed-item-row button {
    margin-top: 0;
    padding: 6px 12px;
    font-size: 12.5px;
}

.job-block {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 16px;
}

.job-block:last-child {
    margin-bottom: 0;
}

.job-block-header {
    margin-bottom: 12px;
    font-size: 14.5px;
}

.job-block .edit-details {
    margin-top: 12px;
}

.quote-block {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 10px;
    background: var(--bg);
}

.quote-block-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 8px;
}

.quote-materials-table th,
.quote-materials-table td {
    padding: 8px 10px;
    font-size: 13px;
}

.quote-materials-table button {
    margin-top: 0;
    padding: 5px 10px;
    font-size: 12px;
}

.correction-form {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    min-width: 260px;
}

.correction-form select,
.correction-form input {
    width: auto;
    padding: 7px 9px;
    font-size: 13px;
}

.correction-form button {
    margin-top: 0;
    padding: 7px 12px;
    font-size: 12.5px;
}

/* Search */

.search-box {
    margin-bottom: 14px;
}

.search-box input {
    font-size: 14.5px;
    padding: 11px 14px;
}

.search-count {
    font-size: 12.5px;
    color: var(--text-faint);
    margin-bottom: 10px;
    font-weight: 500;
}

.field-hint {
    font-size: 12.5px;
    color: var(--amber-text);
    font-weight: 600;
    margin-top: 4px;
}

/* Searchable item picker */

.item-picker {
    position: relative;
}

.item-picker-panel {
    position: absolute;
    z-index: 30;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    max-height: 280px;
    overflow-y: auto;
}

.item-picker-list {
    list-style: none;
    margin: 0;
    padding: 4px;
}

.item-picker-option {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-picker-option[hidden] {
    display: none;
}

.item-picker-option:hover {
    background: var(--accent-soft);
}

.item-picker-code {
    font-weight: 700;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.item-picker-desc {
    font-size: 14px;
    color: var(--text);
}

.item-picker-avail {
    font-size: 12px;
    color: var(--text-faint);
    font-weight: 600;
}

.item-picker-input:disabled {
    background: var(--bg);
    cursor: not-allowed;
}

.item-picker-empty {
    padding: 12px;
    margin: 0;
    color: var(--text-faint);
    font-size: 13px;
}

.item-picker-error {
    font-size: 12.5px;
    color: var(--red-text);
    font-weight: 600;
    margin-top: 4px;
}

/* Admin user management */

.role-form,
.active-form {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.role-form select {
    width: auto;
    padding: 7px 9px;
    font-size: 13px;
}

.role-form button,
.active-form button {
    margin-top: 0;
    padding: 7px 12px;
    font-size: 12.5px;
}

.active-form button {
    background: var(--gray-text);
}

.active-form button:hover {
    background: #4b5563;
}

/* Login page */

.login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(37, 99, 235, 0.10) 0%, transparent 45%),
        var(--bg);
    padding: 20px;
}

.login-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 34px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
}

.login-card .brand-mark {
    width: 72px;
    height: 72px;
    background-size: 156px 140px;
    background-position: -43px -2px;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-md);
}

.login-card h1 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--navy);
    text-align: center;
    letter-spacing: -0.01em;
}

.login-card p.subtitle {
    margin: 0 0 26px 0;
    color: var(--text-muted);
    font-size: 13.5px;
    text-align: center;
}

.login-card button {
    width: 100%;
    padding: 12px;
    font-size: 14.5px;
}

.login-error {
    margin-top: 16px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    background: var(--red-bg);
    color: var(--red-text);
    font-size: 13.5px;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 640px) {
    .header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        order: 3;
        width: 100%;
    }

    .user-bar {
        order: 2;
    }

    main {
        margin: 20px auto;
        padding: 0 14px 32px;
    }

    .card {
        padding: 18px;
    }
}

/* Responsive stacked tables: below the breakpoint, rows become cards
   instead of requiring horizontal scroll. */
@media (max-width: 780px) {
    .table-wrap {
        overflow-x: visible;
    }

    table.responsive-stack thead {
        display: none;
    }

    table.responsive-stack,
    table.responsive-stack tbody,
    table.responsive-stack tr,
    table.responsive-stack td {
        display: block;
        width: 100%;
    }

    table.responsive-stack tr {
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        margin-bottom: 14px;
        padding: 4px 14px;
        box-shadow: var(--shadow-sm);
        background: var(--surface);
    }

    table.responsive-stack td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
        text-align: right;
        padding: 11px 0;
        border-bottom: 1px solid var(--border);
    }

    table.responsive-stack td:last-child {
        border-bottom: none;
    }

    table.responsive-stack td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: var(--text-muted);
        text-align: left;
        flex-shrink: 0;
    }

    table.responsive-stack td.stack-col {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 8px;
    }

    table.responsive-stack td.stack-col::before {
        margin-bottom: 2px;
    }

    table.responsive-stack .stock-actions {
        width: 100%;
        min-width: 0;
    }

    table.responsive-stack .adjust-form,
    table.responsive-stack .correction-form {
        flex-wrap: wrap;
    }
}

/* Home page */

.home-welcome {
    margin-bottom: 22px;
}

.home-welcome h2 {
    margin: 0 0 4px 0;
    font-size: 22px;
    letter-spacing: -0.01em;
}

.home-welcome p {
    margin: 0;
    font-size: 14px;
}

.home-section {
    margin-bottom: 26px;
}

.home-section h3 {
    margin: 0 0 10px 2px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 12px;
}

.home-tile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.home-tile:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    border-color: var(--accent);
}

.home-tile-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--accent);
}

.home-tile-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Vehicle stock add / note fields */

.adjust-form select {
    width: auto;
    padding: 7px 9px;
    font-size: 13px;
}

.adjust-form .note-input {
    width: 170px;
}
