@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    --page-bg: #07080b;
    --surface: rgba(13, 16, 24, 0.65);
    --surface-solid: #0e111a;
    --surface-muted: rgba(255, 255, 255, 0.03);
    
    --accent: #d6ff63; /* Neon Lime Green matching brand logo */
    --accent-rgb: 214, 255, 99;
    --accent-cyan: #00f0ff; /* Electric Teal/Cyan */
    --accent-cyan-rgb: 0, 240, 255;
    
    --text: #f3f4f6;
    --muted: #9ca3af;
    --line: rgba(255, 255, 255, 0.08);
    --line-focus: rgba(214, 255, 99, 0.35);
    
    --warning: #ffb300;
    --danger: #ff453a;
    --success: #34c759;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
*::-webkit-scrollbar-track {
    background: transparent;
}
*::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 99px;
}

html {
    background: var(--page-bg);
    color-scheme: dark;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: var(--page-bg);
    background-image: 
        radial-gradient(circle at 50% -20%, rgba(214, 255, 99, 0.15), transparent 45%),
        radial-gradient(circle at 10% 40%, rgba(0, 240, 255, 0.06), transparent 35%),
        radial-gradient(circle at 90% 70%, rgba(214, 255, 99, 0.05), transparent 35%);
    background-attachment: fixed;
    color: var(--text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.011em;
}

/* Pseudo background elements for high-end glowing spots (aurora effect) */
body::before {
    content: "";
    position: fixed;
    top: -15%;
    left: -15%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(214, 255, 99, 0.07) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}
body::after {
    content: "";
    position: fixed;
    bottom: -15%;
    right: -15%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(90px);
}

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

/* Custom class dark-page just in case, styling is inherited from body now */
.dark-page {
    background-color: var(--page-bg);
    background-image: 
        radial-gradient(circle at 18% 0%, rgba(214, 255, 99, 0.15), transparent 32%),
        radial-gradient(circle at 82% 8%, rgba(0, 240, 255, 0.08), transparent 30%),
        radial-gradient(circle at 50% 60%, rgba(13, 16, 24, 0.95), var(--page-bg) 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 76px;
    padding: 12px max(24px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.glass-header {
    background: rgba(7, 8, 11, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
}

.brand,
.header-actions,
.panel-head {
    display: flex;
    align-items: center;
}

.brand {
    gap: 14px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(13, 16, 24, 0.8);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.admin-gate-trigger {
    cursor: default;
    user-select: none;
}

.admin-gate-trigger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.brand:hover .brand-mark {
    transform: rotate(5deg) scale(1.05);
}

.brand-mark img {
    width: 42px;
    height: 42px;
    display: block;
}

.brand strong,
.brand span {
    display: block;
}

.brand strong {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.brand span,
.lead,
.panel-head p,
label,
.form-message,
dt {
    color: var(--muted);
}

.brand span {
    font-size: 12px;
    margin-top: 1px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.header-actions {
    gap: 12px;
    flex-wrap: wrap;
}

.header-link {
    color: var(--text);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 99px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-link:hover {
    color: var(--accent);
    background: rgba(214, 255, 99, 0.08);
    border-color: rgba(214, 255, 99, 0.3);
    box-shadow: 0 0 15px rgba(214, 255, 99, 0.08);
}

main {
    width: min(1180px, calc(100vw - 32px));
    margin: 44px auto 80px;
}

.hub-main {
    width: min(1220px, calc(100vw - 32px));
}

.hub-hero {
    min-height: 460px;
    display: flex;
    align-items: center;
    padding: clamp(32px, 6vw, 72px);
    border-radius: var(--radius-xl);
    background: 
        linear-gradient(135deg, rgba(13, 16, 24, 0.95), rgba(7, 8, 11, 0.85)),
        radial-gradient(circle at 85% 20%, rgba(214, 255, 99, 0.22), transparent 40%),
        radial-gradient(circle at 15% 85%, rgba(0, 240, 255, 0.14), transparent 40%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.hub-hero::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255,255,255,0.06), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hub-hero > div {
    position: relative;
    z-index: 2;
}

.hub-hero h1 {
    max-width: 900px;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
    background: linear-gradient(120deg, #ffffff 40%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hub-hero .lead {
    max-width: 740px;
    font-size: clamp(16px, 1.8vw, 21px);
    line-height: 1.45;
    margin-top: 20px;
    color: #9ca3af;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.route-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.route-card {
    min-height: 320px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    color: var(--text);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--surface);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.route-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(214, 255, 99, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 255, 99, 0.3);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(214, 255, 99, 0.04);
}

.route-card:hover::before {
    opacity: 1;
}

.route-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    margin-top: 16px;
}

.route-card p {
    color: var(--muted);
    max-width: 480px;
    font-size: 15.5px;
    line-height: 1.5;
    margin: 16px 0;
}

.route-card strong {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.25s ease;
}

.route-card:hover strong {
    transform: translateX(4px);
}

.route-index {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
}

.eyebrow {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.shop-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.rx-builder-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
    gap: 28px;
    align-items: start;
}

.rx-builder-layout .checkout-panel {
    position: sticky;
    top: 104px;
}

.product-panel,
.checkout-panel,
.status-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--surface);
    backdrop-filter: blur(24px) saturate(160%);
    padding: clamp(24px, 4vw, 40px);
}

.elevated-panel {
    box-shadow: var(--shadow-lg);
}

h1,
h2 {
    margin: 0;
    font-family: var(--font-heading);
}

h1 {
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.lead {
    max-width: 720px;
    line-height: 1.5;
    font-size: 16.5px;
    color: var(--muted);
    margin-top: 12px;
}

.product-list,
.checkout-form,
.rx-builder-form,
.delivery-box,
.admin-list {
    display: grid;
    gap: 14px;
}

.rx-builder-form h2 {
    margin-top: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
    color: var(--accent-cyan);
}

.rx-builder-form h2:first-child {
    margin-top: 0;
}

.product-card {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover:not(:disabled) {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-sm);
}

.product-card:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.product-card.active {
    border-color: rgba(214, 255, 99, 0.5);
    background: rgba(214, 255, 99, 0.06);
    box-shadow: 0 0 25px rgba(214, 255, 99, 0.12), var(--shadow-sm);
}

.product-card strong,
.product-card span {
    display: block;
}

.product-card strong {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.product-card span {
    margin-top: 3px;
    font-size: 13px;
    color: var(--muted);
}

.price {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 20px;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(214, 255, 99, 0.2);
}

.panel-head {
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
}

.panel-head p {
    margin: 6px 0 0;
    font-size: 14.5px;
}

.form-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #e5e7eb;
}

input,
textarea,
select {
    width: 100%;
    margin-top: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    padding: 13px 16px;
    transition: all 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 4px rgba(214, 255, 99, 0.12);
}

.primary-btn {
    border: 0;
    border-radius: 99px;
    background: var(--accent);
    color: #07080b;
    padding: 15px 26px;
    font-family: var(--font-heading);
    font-weight: 750;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(214, 255, 99, 0.25);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    background: #e2ff8c;
    box-shadow: 0 12px 30px rgba(214, 255, 99, 0.4);
}

.primary-btn:active:not(:disabled) {
    transform: translateY(0);
}

.ghost-btn {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.ghost-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.secondary-download {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.secondary-download:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

.primary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.form-message {
    font-size: 13.5px;
    line-height: 1.4;
    padding: 8px 4px;
}

.form-message.error {
    color: var(--danger);
    text-shadow: 0 0 10px rgba(255, 69, 58, 0.1);
}

.admin-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(3, 5, 9, 0.76);
    backdrop-filter: blur(16px);
}

.admin-gate-dialog {
    position: relative;
    width: min(420px, 100%);
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(14, 17, 26, 0.98);
    box-shadow: var(--shadow-lg);
}

.admin-gate-dialog h2 {
    margin: 8px 0 8px;
    font-family: var(--font-heading);
    font-size: 28px;
}

.admin-gate-dialog p {
    margin: 0 0 18px;
    color: var(--muted);
}

.admin-gate-dialog label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.admin-gate-dialog input {
    width: 100%;
    min-height: 46px;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    padding: 0 12px;
    outline: none;
}

.admin-gate-dialog input:focus {
    border-color: var(--line-focus);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.08);
}

.admin-gate-dialog .primary-btn {
    width: 100%;
}

.admin-gate-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.admin-gate-close:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.18);
}

.status-main {
    max-width: 900px;
}

.status-badge {
    padding: 8px 18px;
    border-radius: 99px;
    background: rgba(255, 179, 0, 0.12);
    border: 1px solid rgba(255, 179, 0, 0.25);
    color: var(--warning);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    display: inline-block;
    animation: status-pulse 1.5s infinite;
}

.status-badge.paid {
    background: rgba(52, 199, 89, 0.12);
    border-color: rgba(52, 199, 89, 0.25);
    color: var(--success);
}

.status-badge.error {
    background: rgba(255, 69, 58, 0.12);
    border-color: rgba(255, 69, 58, 0.25);
    color: var(--danger);
}

@keyframes status-pulse {
    0% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.85); opacity: 0.5; }
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 24px;
}

.status-grid div,
.notice-box,
.delivery-box,
.admin-row {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.status-grid div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.security-note {
    margin: 24px 0;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.feature-list div {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.01);
    padding: 18px 20px;
    transition: border-color 0.2s ease;
}

.feature-list div:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list strong {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-list span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.compliance-note {
    margin: 24px 0;
    border-color: rgba(255, 179, 0, 0.2);
    background: rgba(255, 179, 0, 0.05);
}

.notice-box strong,
.compliance-note strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.compliance-note strong {
    color: var(--warning);
}

.notice-box p,
.compliance-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.preview-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 26px 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.15);
}

.preview-mini div {
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(214, 255, 99, 0.2) 0%, rgba(0, 240, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.preview-mini div:hover {
    transform: scale(1.04);
}

.preview-mini span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-top: 6px;
    display: block;
}

dt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}

dd {
    margin: 4px 0 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.admin-main {
    width: min(1280px, calc(100vw - 32px));
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.admin-row {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.01);
    font-size: 14.5px;
    line-height: 1.5;
    transition: background 0.2s ease;
}

.admin-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.hidden {
    display: none !important;
}

@media (max-width: 840px) {
    .shop-layout,
    .rx-builder-layout,
    .status-grid,
    .form-pair,
    .route-grid,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .rx-builder-layout .checkout-panel {
        position: static;
    }

    .site-header {
        position: static;
        padding: 16px 20px;
        flex-direction: row;
        align-items: center;
    }

    .panel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .header-actions,
    .hero-actions {
        width: auto;
    }

    .hub-hero {
        min-height: 380px;
        border-radius: var(--radius-lg);
        padding: 36px 28px;
    }

    .product-card {
        grid-template-columns: 1fr;
        padding: 18px 20px;
    }

    .price {
        font-size: 18px;
    }
}

@media (max-width: 520px) {
    main,
    .hub-main,
    .admin-main {
        width: min(100% - 24px, 1180px);
        margin-top: 24px;
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
    }
    
    .header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .header-link {
        text-align: center;
        padding: 8px 12px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .hub-hero,
    .product-panel,
    .checkout-panel,
    .status-panel {
        padding: 24px 20px;
    }

    .route-card {
        min-height: 280px;
        padding: 28px;
    }

    input,
    textarea,
    select {
        min-height: 44px;
    }
}
