/* Modern Web App Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors - Eco Friendly */
    --primary: #16a34a; /* Green 600 */
    --primary-hover: #15803d; /* Green 700 */
    --primary-light: #dcfce7; /* Green 100 */

    --secondary: #065f46; /* Emerald 800 */
    --accent: #f5d27c; /* Straw Yellow */

    /* Neutral Colors */
    --bg-body: #f4f4f2; /* Light neutral */
    --bg-surface: #ffffff;
    --bg-sidebar: #064e3b;

    --text-main: #111827; /* Deep gray */
    --text-secondary: #6b7280;
    --text-light: #9ca3af; /* Gray 400 */
    --text-on-dark: #f9fafb; /* Gray 50 */

    --border: #e5e7eb; /* Gray 200 */
    --border-focus: #16a34a;

    /* Status Colors */
    --success: #16a34a;
    --success-bg: #dcfce7;
    --warning: #eab308; /* Amber */
    --warning-bg: #fef08a;
    --danger: #ef4444;
    --danger-bg: #fee2e2;
    --info: #065f46; /* Emerald */
    --info-bg: #d1fae5;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Transitions */
    --transition: all 0.2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    font-size: 0.95rem;
    overflow-x: hidden;
}

/* Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: var(--bg-sidebar);
    color: var(--text-on-dark);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.sidebar.collapsed { width: 72px; }
.sidebar.collapsed .logo-text { display: none; }
.sidebar.collapsed .nav-label { display: none; }
.sidebar.collapsed .nav-item span { display: none; }
.sidebar.collapsed .nav-item { justify-content: center; }

.sidebar-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.sidebar-nav {
    padding: 1.5rem 1rem;
    flex: 1;
}

.nav-group {
    margin-bottom: 2rem;
}

.nav-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 0.25rem;
}

.nav-item:hover,
.nav-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-item.active {
    background-color: var(--primary);
}

.nav-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}
.nav-icon-svg {
    width: 20px;
    height: 20px;
    filter: invert(90%);
}
.nav-group.open .nav-label {
    color: var(--primary-light);
}
.nav-group .nav-items { display: block; padding-left: 0.75rem; }
.nav-group.open .nav-items { display: block; }
.nav-group .nav-items .nav-item { padding-left: 0.5rem; }
.sidebar-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-on-dark);
    cursor: pointer;
    margin-left: auto;
}
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-surface);
}
.header-sub-actions { display:flex; align-items:center; gap:0.5rem; padding: 0.5rem 1.5rem; border-bottom: 1px solid var(--border); background-color: var(--bg-surface); }
.header-sidebar-toggle { margin-right: 0.5rem; }

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.user-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
}

.user-info p {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    height: 100vh;
}

.top-header {
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Sidebar layout adjustments */
.sidebar .sidebar-nav { padding: 1.25rem 0.75rem; }
.sidebar .nav-group { margin-bottom: 12px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; background-color: rgba(255,255,255,0.03); padding: 8px; }
.sidebar .nav-item { gap: 0.25rem; padding: 0.5rem 0.5rem; }
.sidebar .nav-item .nav-icon-svg { width: 16px; height: 16px; margin: 0; }
.sidebar .nav-item span { margin: 0; padding: 0; }
.sidebar .nav-label { color: #cbd5e1; display:flex; align-items:center; gap:0.25rem; padding:0; margin:0; }
.sidebar .nav-group-icon { width:16px; height:16px; margin:0; }
.sidebar .group-caret { margin-left:auto; width:12px; height:12px; }
.sidebar .nav-group .nav-items { padding-left: 0.5rem; }
.sidebar .nav-group .nav-items .nav-item { padding-left: 0; color: #94a3b8; gap: 0.25rem; }
.sidebar .nav-group .nav-items .nav-item:hover { color: #e2e8f0; }
.sidebar .nav-group .nav-items .nav-item .nav-icon-svg { filter: invert(80%); }
.sidebar .nav-item:hover { background-color: rgba(255,255,255,0.06); }
.sidebar .nav-item.active { background-color: rgba(22,163,74,0.15); border-left: 3px solid var(--primary); }

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.search-bar {
    position: relative;
}

.search-input {
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    width: 420px;
    max-width: 100%;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    width: 16px;
    height: 16px;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-icon:hover {
    background-color: var(--bg-body);
    color: var(--primary);
}

/* Content Area */
.content-area {
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Pricing Layout */
.pricing-container { display: grid; grid-template-columns: 1fr 360px; gap: 1rem; align-items: start; }
.pricing-form-area { max-width: none; width: 100%; margin: 0; padding-right: 0; }
.pricing-result-panel { position: sticky; top: 64px; width: 360px; background: var(--bg-surface); border-left: 1px solid var(--border); height: calc(100vh - 64px); overflow-y: auto; box-shadow: var(--shadow-lg); }
.result-header { padding: 1rem; border-bottom: 1px solid var(--border); }
.result-body { padding: 1rem; }
.result-footer { padding: 1rem; border-top: 1px solid var(--border); background: var(--bg-surface); position: sticky; bottom: 0; }

/* Components */
.card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 0.75rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background-color: white;
    border-color: var(--border);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: var(--bg-body);
    border-color: var(--text-secondary);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.stat-info h3 {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

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

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

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bg-primary-light {
    background-color: var(--primary-light);
    color: var(--primary);
}

.bg-success-light {
    background-color: var(--success-bg);
    color: var(--success);
}

.bg-warning-light {
    background-color: var(--warning-bg);
    color: var(--warning);
}

.bg-info-light {
    background-color: var(--info-bg);
    color: var(--info);
}

/* Tables */
.table-container {
    overflow-x: auto;
}

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

th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-body);
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-main);
    word-break: break-word;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: #f9fafb;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-success {
    background-color: var(--success-bg);
    color: var(--success);
}

.badge-warning {
    background-color: var(--warning-bg);
    color: var(--warning);
}

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

.badge-info {
    background-color: var(--info-bg);
    color: var(--info);
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Utilities */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.text-sm {
    font-size: 0.875rem;
}

.font-medium {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -260px;
        height: 100%;
        z-index: 50;
    }

    .sidebar.open {
        left: 0;
    }

    .main-content {
        width: 100%;
        height: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    .top-header { padding: 0.5rem; }
    .content-area { padding: 0.75rem; }
    .search-input { width: 100%; }
}

/* Eco-friendly high-contrast sidebar overrides */
.sidebar { background-color: #0b3d2e; color: #e6f3ea; }
.sidebar .nav-label { color: #ffffff; }
.sidebar .nav-item { color: #ffffff; }
.sidebar .nav-item:hover { background-color: rgba(255,255,255,0.08); }
.sidebar .nav-item.active { background-color: rgba(22,163,74,0.2); border-left: 3px solid #16a34a; }
.sidebar .nav-group { border-color: rgba(255,255,255,0.12); background-color: rgba(255,255,255,0.05); }
    .pricing-container { grid-template-columns: 1fr; }
    .pricing-form-area { padding-right: 0; }
    .pricing-result-panel { position: static; width: 100%; height: auto; box-shadow: none; border-left: none; top: auto; }
}

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

/* Pricing Page Specifics - Compact Layout */
.pricing-container {
    display: flex;
    height: calc(100vh - 73px);
    /* Subtract header height approx */
    overflow: hidden;
}

.pricing-form-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-body);
    overflow: hidden;
}

.pricing-tabs {
    display: flex;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.pricing-tab-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.tab-pane {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-result-panel {
    width: 380px;
    background-color: var(--bg-surface);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.03);
    z-index: 5;
}

.result-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    background-color: #f8fafc;
}

.result-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.result-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background-color: var(--bg-surface);
}

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

.price-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-unit {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
}

.cost-breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.cost-label {
    color: var(--text-secondary);
}

.cost-val {
    font-weight: 500;
    color: var(--text-main);
}

.nesting-preview-mini {
    background-color: #e2e8f0;
    border-radius: var(--radius);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

/* Compact Form Grid */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.form-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    margin-top: 0.5rem;
}

/* Custom Radio Cards for Product Type */
.product-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.radio-card {
    position: relative;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-card-content {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.radio-card input:checked+.radio-card-content {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.radio-card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.radio-card-label {
    font-size: 0.875rem;
    font-weight: 500;
}


/* Sidebar Toggle & Collapse */
.sidebar {
    position: relative;
    transition: width 0.3s ease, left 0.3s ease;
}

.sidebar.collapsed {
    width: 80px;
}

.sidebar.collapsed .logo-text,
.sidebar.collapsed .nav-label,
.sidebar.collapsed .nav-item span,
.sidebar.collapsed .user-info {
    display: none;
}

.sidebar.collapsed .sidebar-header {
    justify-content: center;
    padding: 1.5rem 0;
}

.sidebar.collapsed .nav-item {
    justify-content: center;
    padding: 0.75rem;
}

.sidebar.collapsed .nav-icon {
    margin-right: 0;
    width: 24px;
    height: 24px;
}

.sidebar.collapsed .user-profile {
    justify-content: center;
}

.sidebar-toggle-btn {
    position: absolute;
    right: -12px;
    top: 24px;
    width: 24px;
    height: 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.sidebar-toggle-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Global Search Results Dropdown */
.global-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 0.5rem;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f9fafb;
}

.result-icon {
    color: var(--text-secondary);
}

.result-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.result-type {
    font-size: 0.75rem;
    color: var(--text-light);
}

.search-no-result {
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}
.nav-group-icon {
    width: 16px;
    height: 16px;
    filter: invert(80%);
    margin-right: 0;
}
.group-caret {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}
.nav-group.open .group-caret { transform: rotate(180deg); }
.cg-content { max-width: 100%; }
.cg-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cg-content .form-grid-4 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1200px) { .cg-sections { grid-template-columns: 1fr; } .cg-content .form-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .cg-content .form-grid-4 { grid-template-columns: 1fr; } }
table.customers-table tbody tr { cursor: pointer; }
table.customers-table tbody tr:hover { background-color: #f9fafb; }
table.customers-table th, table.customers-table td { padding: 0.75rem; }
table.customers-table { table-layout: auto; }
/* Column widths for better readability and horizontal scroll */
table.customers-table th:nth-child(1), table.customers-table td:nth-child(1) { min-width: 90px; }
table.customers-table th:nth-child(2), table.customers-table td:nth-child(2) { min-width: 110px; }
table.customers-table th:nth-child(3), table.customers-table td:nth-child(3) { min-width: 110px; }
table.customers-table th:nth-child(4), table.customers-table td:nth-child(4) { min-width: 160px; }
table.customers-table th:nth-child(5), table.customers-table td:nth-child(5) { min-width: 240px; }
table.customers-table th:nth-child(6), table.customers-table td:nth-child(6) { min-width: 300px; }
table.customers-table th:nth-child(7), table.customers-table td:nth-child(7) { min-width: 120px; }
table.customers-table th:nth-child(8), table.customers-table td:nth-child(8) { min-width: 180px; }
table.customers-table th:nth-child(9), table.customers-table td:nth-child(9) { min-width: 140px; }
table.customers-table th:nth-child(10), table.customers-table td:nth-child(10) { min-width: 220px; }
table.customers-table th:nth-child(11), table.customers-table td:nth-child(11) { min-width: 220px; }
table.customers-table th:nth-child(12), table.customers-table td:nth-child(12) { min-width: 140px; }
table.customers-table th:nth-child(13), table.customers-table td:nth-child(13) { min-width: 160px; }
table.customers-table th:nth-child(14), table.customers-table td:nth-child(14) { min-width: 180px; }
table.customers-table th:nth-child(15), table.customers-table td:nth-child(15) { min-width: 140px; }
table.customers-table th:nth-child(16), table.customers-table td:nth-child(16) { min-width: 220px; }
table.customers-table th:nth-child(17), table.customers-table td:nth-child(17) { min-width: 300px; }
table.customers-table th:nth-child(18), table.customers-table td:nth-child(18) { min-width: 300px; }
/* Always show all columns; enable horizontal scroll */
@media (max-width: 1200px) {
  table.customers-table th, table.customers-table td { display: table-cell !important; }
}
