:root {
    --brand-900: #0b5cab;
    --brand-700: #2f86c7;
    --accent-600: #69b241;
    --brand-soft: #edf6fd;
    --brand-soft-strong: #dcecff;
    --surface: #ffffff;
    --surface-alt: #f4f9fd;
    --surface-deep: #083764;
    --text-primary: #12304d;
    --text-secondary: #5a7188;
    --border: rgba(11, 92, 171, 0.12);
    --shadow-lg: 0 24px 60px rgba(8, 55, 100, 0.16);
    --shadow-md: 0 14px 30px rgba(11, 92, 171, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(47, 134, 199, 0.18), transparent 32%),
        radial-gradient(circle at top right, rgba(105, 178, 65, 0.14), transparent 26%),
        linear-gradient(180deg, #edf5fb 0%, #f8fbfe 48%, #ffffff 100%);
    color: var(--text-primary);
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#app {
    min-height: 100vh;
}

.app-shell {
    position: relative;
}

.app-navbar {
    position: relative;
    z-index: 1100;
    min-height: 5.25rem;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(11, 92, 171, 0.09);
    box-shadow: 0 10px 28px rgba(8, 55, 100, 0.07);
    backdrop-filter: blur(14px);
}

.app-navbar .dropdown-menu {
    position: absolute;
    z-index: 1110;
}

.app-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    color: #064b4a;
    text-decoration: none;
}

.app-brand:hover {
    color: #064b4a;
}

.app-brand.has-logo {
    padding: 0;
}

.app-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: #064b4a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(6, 75, 74, 0.16);
}

.app-brand-logo {
    display: block;
    width: auto;
    max-width: 15rem;
    height: 3.7rem;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: rgba(18, 48, 77, 0.72) !important;
    font-weight: 600;
    border-radius: 0.8rem;
    padding: 0.55rem 0.85rem !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #064b4a !important;
    background: rgba(6, 75, 74, 0.07);
}

.app-user-nav .dropdown-menu {
    border: 1px solid rgba(11, 92, 171, 0.1);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.orders-dock-shell {
    position: relative;
    z-index: 1090;
    margin-top: 0;
    padding: 1rem 0 0;
}

.orders-dock {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.orders-dock-link {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.95rem 1.05rem;
    border: 1px solid rgba(11, 92, 171, 0.12);
    border-radius: 1.3rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 253, 0.96)),
        linear-gradient(135deg, rgba(47, 134, 199, 0.08), rgba(105, 178, 65, 0.07));
    box-shadow: 0 14px 35px rgba(8, 55, 100, 0.12);
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.orders-dock-link::after {
    content: "";
    position: absolute;
    inset: auto -18% -55% auto;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 134, 199, 0.18), transparent 65%);
    pointer-events: none;
}

.orders-dock-link:hover,
.orders-dock-link.is-active {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(8, 55, 100, 0.16);
    border-color: rgba(11, 92, 171, 0.22);
    color: var(--brand-900);
}

.orders-dock-link.is-active {
    background:
        linear-gradient(135deg, rgba(220, 236, 255, 0.98), rgba(255, 255, 255, 0.98)),
        linear-gradient(135deg, rgba(47, 134, 199, 0.1), rgba(105, 178, 65, 0.08));
}

.orders-dock-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(8, 55, 100, 0.95), rgba(11, 92, 171, 0.92));
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.orders-dock-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.orders-dock-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.orders-dock-copy strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.98rem;
    line-height: 1.1;
}

.orders-dock-copy small {
    margin-top: 0.2rem;
    color: var(--text-secondary);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.app-main {
    position: relative;
    z-index: 1;
}

.app-footer {
    background: rgba(255, 255, 255, 0.78);
    border-top: 1px solid rgba(11, 92, 171, 0.08);
    color: var(--text-secondary);
    backdrop-filter: blur(12px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(11, 92, 171, 0.09);
    color: var(--brand-900);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid rgba(11, 92, 171, 0.12);
    border-radius: 1.75rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 253, 0.96)),
        linear-gradient(135deg, rgba(47, 134, 199, 0.1), rgba(105, 178, 65, 0.08));
    box-shadow: var(--shadow-lg);
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -5% -35% auto;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105, 178, 65, 0.2), transparent 65%);
    pointer-events: none;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 700;
    line-height: 1.05;
}

.hero-copy {
    max-width: 50rem;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.7;
}

.hero-sidecard {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(220, 236, 255, 0.95));
    border: 1px solid rgba(11, 92, 171, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.status-pill {
    display: inline-flex;
    padding: 0.5rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card .card-body {
    position: relative;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(11, 92, 171, 0.14), rgba(47, 134, 199, 0.18));
    color: var(--brand-900);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.feature-icon-green {
    background: linear-gradient(135deg, rgba(105, 178, 65, 0.16), rgba(47, 134, 199, 0.14));
    color: #4b8d28;
}

.warehouse-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.warehouse-filter-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 170px;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(11, 92, 171, 0.12);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(11, 92, 171, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.warehouse-filter-button:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(11, 92, 171, 0.12);
}

.warehouse-filter-button.is-active {
    border-color: rgba(11, 92, 171, 0.28);
    box-shadow: 0 0 0 0.18rem rgba(47, 134, 199, 0.12);
}

.warehouse-filter-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.warehouse-filter-text strong {
    font-size: 0.95rem;
}

.warehouse-filter-text small {
    color: var(--text-secondary);
    font-size: 0.76rem;
}

.warehouse-filter-dot {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 999px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.dot-neutral {
    background: #d7e4f2;
}

.dot-green {
    background: #4caf50;
}

.dot-yellow {
    background: #f0c840;
}

.dot-orange {
    background: #ef8b2c;
}

.dot-red {
    background: #d94b4b;
}

.warehouse-filter-green {
    background: linear-gradient(180deg, rgba(236, 249, 237, 0.98), rgba(255, 255, 255, 0.98));
}

.warehouse-filter-yellow {
    background: linear-gradient(180deg, rgba(255, 249, 220, 0.98), rgba(255, 255, 255, 0.98));
}

.warehouse-filter-orange {
    background: linear-gradient(180deg, rgba(255, 238, 222, 0.98), rgba(255, 255, 255, 0.98));
}

.warehouse-filter-red {
    background: linear-gradient(180deg, rgba(255, 232, 232, 0.98), rgba(255, 255, 255, 0.98));
}

.status-hero {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(11, 92, 171, 0.12);
    box-shadow: var(--shadow-md);
}

.status-hero-icon {
    width: 4.25rem;
    height: 4.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.72);
    flex-shrink: 0;
}

.status-hero-icon svg {
    width: 2rem;
    height: 2rem;
}

.status-hero-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.status-hero-title {
    margin: 0 0 0.35rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.status-hero-copy {
    color: var(--text-secondary);
    max-width: 48rem;
}

.status-hero-placed {
    background: linear-gradient(135deg, rgba(11, 92, 171, 0.14), rgba(220, 236, 255, 0.9));
    color: #0b4a86;
}

.status-hero-processed {
    background: linear-gradient(135deg, rgba(47, 134, 199, 0.14), rgba(225, 244, 255, 0.92));
    color: #155f95;
}

.status-hero-warehouse {
    background: linear-gradient(135deg, rgba(105, 178, 65, 0.16), rgba(235, 250, 226, 0.92));
    color: #427a20;
}

.status-hero-pending {
    background: linear-gradient(135deg, rgba(208, 63, 63, 0.16), rgba(255, 235, 235, 0.95));
    color: #a12c2c;
}

.status-hero-shipped {
    background: linear-gradient(135deg, rgba(93, 108, 129, 0.16), rgba(239, 244, 249, 0.95));
    color: #405164;
}

main {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.card {
    border: 1px solid var(--border);
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 255, 0.98));
    box-shadow: var(--shadow-md);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid rgba(11, 92, 171, 0.08);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.15rem;
}

.card-body {
    padding: 1.6rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
    border: 1px solid transparent;
    border-radius: 0.95rem;
    box-shadow: 0 12px 24px rgba(11, 92, 171, 0.22);
    font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #094b8c, #2777b4);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: rgba(11, 92, 171, 0.28);
    color: var(--brand-900);
    border-radius: 0.95rem;
    font-weight: 700;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: rgba(11, 92, 171, 0.08);
    color: var(--brand-900);
}

.btn-outline-secondary,
.btn-outline-success,
.btn-secondary {
    border-radius: 0.95rem;
    font-weight: 700;
}

.btn-secondary {
    background: #f6fbff;
    color: var(--text-primary);
    border: 1px solid rgba(11, 92, 171, 0.12);
}

.btn-outline-success {
    border-color: rgba(105, 178, 65, 0.45);
    color: #4b8d28;
}

.btn-outline-success:hover,
.btn-outline-success:focus {
    background: rgba(105, 178, 65, 0.1);
    color: #3f7722;
}

.btn-link {
    color: var(--brand-900);
    font-weight: 700;
    text-decoration: none;
}

.btn-link:hover,
.btn-link:focus {
    color: #094b8c;
}

.form-control,
.form-select {
    min-height: 3rem;
    border: 1px solid rgba(11, 92, 171, 0.16);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(47, 134, 199, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(47, 134, 199, 0.14);
}

.table {
    background: var(--surface);
    border-radius: 1rem;
    overflow: hidden;
}

.table thead th {
    background: linear-gradient(180deg, rgba(11, 92, 171, 0.06), rgba(47, 134, 199, 0.04));
    border-bottom: 2px solid rgba(11, 92, 171, 0.08);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.table tbody tr {
    border-bottom: 1px solid rgba(11, 92, 171, 0.08);
    transition: background-color 0.2s ease;
}

.table-hover > tbody > tr:hover {
    background: rgba(47, 134, 199, 0.045);
}

.table tbody tr:last-child {
    border-bottom: none;
}

.badge {
    border-radius: 999px;
    padding: 0.55em 0.8em;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--brand-900), var(--brand-700)) !important;
}

.badge.bg-warning {
    background-color: #f7d154 !important;
    color: #3f3f2f !important;
}

.badge.bg-success {
    background-color: var(--accent-600) !important;
}

.badge.bg-secondary {
    background-color: #d9e5f3 !important;
    color: #45627e !important;
}

.alert {
    border-radius: 1rem;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(105, 178, 65, 0.12);
    border-color: rgba(105, 178, 65, 0.2);
    color: #356814;
}

.form-label {
    font-weight: 600;
    color: var(--text-secondary);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
}

.pagination {
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
    margin-bottom: 0;
}

.page-link {
    border: 1px solid rgba(11, 92, 171, 0.12);
    border-radius: 0.65rem !important;
    color: var(--brand-900);
    box-shadow: none;
    min-width: 2.15rem;
    padding: 0.42rem 0.68rem;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.page-item.disabled .page-link {
    color: #9aabba;
    background: rgba(255, 255, 255, 0.72);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
    border-color: transparent;
}

.client-pagination nav > div:first-child {
    display: none;
}

.auth-panel {
    border: 1px solid rgba(11, 92, 171, 0.12);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
}

.auth-panel-aside {
    padding: 2rem;
    background: linear-gradient(160deg, rgba(8, 55, 100, 0.98) 0%, rgba(11, 92, 171, 0.95) 58%, rgba(47, 134, 199, 0.9) 100%);
    color: #fff;
}

.auth-title {
    margin: 0 0 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.05;
    color: #fff;
}

.auth-copy {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.auth-accent-list {
    display: grid;
    gap: 0.85rem;
}

.auth-accent-list div {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 991px) {
    .card-body {
        padding: 1.2rem;
    }

    .orders-dock {
        display: flex;
        gap: 0.8rem;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: thin;
    }

    .orders-dock-link {
        min-width: 14rem;
    }

    .navbar-nav .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-panel,
    .auth-panel-aside {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    main {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .card {
        border-radius: 1.2rem;
    }

    .table-responsive {
        overflow-x: auto;
    }

    .hero-title,
    .auth-title {
        font-size: 1.9rem;
    }
}

.app-navbar .dropdown-menu {
    padding: 0.55rem;
    border: 1px solid rgba(11, 92, 171, 0.1);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
}

.app-navbar .dropdown-item {
    border-radius: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.7rem 0.85rem;
}

.app-navbar .dropdown-item:hover,
.app-navbar .dropdown-item:focus {
    background: linear-gradient(135deg, rgba(11, 92, 171, 0.08), rgba(47, 134, 199, 0.08));
    color: var(--brand-900);
}

.page-header-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.6rem 1.75rem;
    border: 1px solid rgba(11, 92, 171, 0.12);
    border-radius: 1.6rem;
    background:
        radial-gradient(circle at top right, rgba(47, 134, 199, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.98));
    box-shadow: var(--shadow-md);
}

.page-header-panel::after {
    content: "";
    position: absolute;
    right: -3rem;
    top: -3rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105, 178, 65, 0.14), transparent 70%);
    pointer-events: none;
}

.page-header-copy,
.page-header-actions {
    position: relative;
    z-index: 1;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    margin-bottom: 0.8rem;
    border-radius: 999px;
    background: rgba(11, 92, 171, 0.08);
    color: var(--brand-900);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-title {
    margin: 0 0 0.35rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.85rem, 3vw, 2.6rem);
    line-height: 1.05;
}

.page-subtitle {
    max-width: 48rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
}

.search-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.98));
}

.data-card {
    overflow: hidden;
}

.data-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(180deg, rgba(11, 92, 171, 0.04), rgba(255, 255, 255, 0.82));
}

.section-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.section-subtitle {
    color: #7a90a6;
    font-size: 0.88rem;
}

.btn-primary,
.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-secondary {
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn-outline-primary,
.btn-outline-secondary {
    background: rgba(255, 255, 255, 0.92);
}

.btn-outline-secondary {
    border-color: rgba(11, 92, 171, 0.16);
    color: var(--text-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-success:hover,
.btn-outline-success:focus,
.btn-secondary:hover,
.btn-secondary:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(8, 55, 100, 0.12);
}

.form-control::placeholder {
    color: #8da3b7;
}

.data-table {
    margin-bottom: 0;
}

.data-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
}

.table-primary {
    font-weight: 700;
    color: var(--text-primary);
}

.table-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(11, 92, 171, 0.08);
    color: var(--brand-900);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.table-actions .btn {
    min-width: 4.75rem;
}

.location-card {
    height: 100%;
}

@media (max-width: 991px) {
    .page-header-panel {
        padding: 1.35rem;
    }
}

@media (max-width: 767px) {
    .page-header-panel {
        flex-direction: column;
    }

    .page-header-actions {
        width: 100%;
    }

    .page-header-actions .btn {
        width: 100%;
    }
}
