/* ==========================================================================
   DAIRYFLOW MODERN DESIGN SYSTEM - VANILLA CSS
   Designed for Milk Processing & Can Movement Tracking System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    /* Primary & Brand */
    --primary: #0284c7;
    --primary-hover: #0369a1;
    --primary-light: #e0f2fe;
    --primary-glow: rgba(2, 132, 199, 0.25);

    /* Backgrounds & Neutrals */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-sidebar: #ffffff;
    --bg-sidebar-hover: #f1f5f9;
    --border-color: #e2e8f0;
    --border-subtle: #f1f5f9;

    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;

    /* Status Colors */
    --status-factory: #059669;
    --status-factory-bg: #ecfdf5;
    --status-factory-border: #a7f3d0;

    --status-transit: #d97706;
    --status-transit-bg: #fffbeb;
    --status-transit-border: #fde68a;

    --status-customer: #7c3aed;
    --status-customer-bg: #f5f3ff;
    --status-customer-border: #ddd6fe;

    --status-overdue: #dc2626;
    --status-overdue-bg: #fef2f2;
    --status-overdue-border: #fecaca;

    --status-maintenance: #64748b;
    --status-maintenance-bg: #f8fafc;
    --status-maintenance-border: #cbd5e1;

    /* Shadows & Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(2, 132, 199, 0.15);

    /* Fonts */
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   LAYOUT: ADMIN PORTAL
   ========================================================================== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    width: 270px;
    background: #ffffff;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    transition: var(--transition);
    border-right: 1px solid #e2e8f0;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.03);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
    flex-shrink: 0;
}

.brand-info h1 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 175px;
}

.brand-info p {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    padding: 12px 12px 6px;
    margin-top: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link svg, .nav-link .icon {
    font-size: 18px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.nav-link:hover {
    background: #f1f5f9;
    color: #0284c7;
}

.nav-link.active {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
}

.user-snippet {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #bae6fd;
}

.user-text .name {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-text .role {
    font-size: 11px;
    color: #64748b;
    text-transform: capitalize;
}

/* Main Area */
.admin-main {
    flex: 1;
    margin-left: 270px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-header {
    height: 70px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}

.header-search {
    flex: 1;
    max-width: 420px;
}

.can-lookup-form {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0 12px;
    transition: var(--transition);
}

.can-lookup-form:focus-within {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.can-lookup-form input {
    border: none;
    background: transparent;
    padding: 9px 8px;
    font-size: 13px;
    width: 100%;
    outline: none;
    font-family: var(--font-mono);
}

.can-lookup-form button {
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.can-lookup-form button:hover {
    color: var(--primary);
}

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

.content-container {
    padding: 32px;
    flex: 1;
}

/* ==========================================================================
   CARDS & KPI WIDGETS
   ========================================================================== */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.kpi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.kpi-card.kpi-total::before { background: #0284c7; }
.kpi-card.kpi-factory::before { background: #059669; }
.kpi-card.kpi-transit::before { background: #d97706; }
.kpi-card.kpi-customer::before { background: #7c3aed; }
.kpi-card.kpi-overdue::before { background: #dc2626; }

.kpi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.kpi-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.kpi-card.kpi-total .kpi-icon { background: var(--primary-light); color: var(--primary); }
.kpi-card.kpi-factory .kpi-icon { background: var(--status-factory-bg); color: var(--status-factory); }
.kpi-card.kpi-transit .kpi-icon { background: var(--status-transit-bg); color: var(--status-transit); }
.kpi-card.kpi-customer .kpi-icon { background: var(--status-customer-bg); color: var(--status-customer); }
.kpi-card.kpi-overdue .kpi-icon { background: var(--status-overdue-bg); color: var(--status-overdue); }

.kpi-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -1px;
}

.kpi-subtext {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ==========================================================================
   TABLES & LISTS
   ========================================================================== */
.card-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    overflow: hidden;
}

.card-panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.panel-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13.5px;
}

.data-table th {
    background: #f8fafc;
    padding: 12px 20px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}

.data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    vertical-align: middle;
}

.data-table tbody tr {
    transition: var(--transition);
}

.data-table tbody tr:hover {
    background: #f8fafc;
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.badge-factory {
    background: var(--status-factory-bg);
    color: var(--status-factory);
    border: 1px solid var(--status-factory-border);
}
.badge-factory .badge-dot { background: var(--status-factory); }

.badge-transit {
    background: var(--status-transit-bg);
    color: var(--status-transit);
    border: 1px solid var(--status-transit-border);
}
.badge-transit .badge-dot { background: var(--status-transit); }

.badge-customer {
    background: var(--status-customer-bg);
    color: var(--status-customer);
    border: 1px solid var(--status-customer-border);
}
.badge-customer .badge-dot { background: var(--status-customer); }

.badge-overdue {
    background: var(--status-overdue-bg);
    color: var(--status-overdue);
    border: 1px solid var(--status-overdue-border);
    animation: pulse 2s infinite;
}
.badge-overdue .badge-dot { background: var(--status-overdue); }

.badge-maintenance {
    background: var(--status-maintenance-bg);
    color: var(--status-maintenance);
    border: 1px solid var(--status-maintenance-border);
}
.badge-maintenance .badge-dot { background: var(--status-maintenance); }

.badge-neutral {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.can-code-badge {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
    background: #0f172a;
    color: #38bdf8;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   BUTTONS & FORMS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-danger {
    background: #dc2626;
    color: #ffffff;
}

.btn-danger:hover {
    background: #b91c1c;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 14px 24px;
    font-size: 15px;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-label .required {
    color: #dc2626;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #ffffff;
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}

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

.form-control[readonly], .form-control:disabled {
    background: #f1f5f9;
    color: var(--text-secondary);
    cursor: not-allowed;
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-error {
    font-size: 12px;
    color: #dc2626;
    margin-top: 4px;
    font-weight: 500;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Flash Alerts */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
}

.alert-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.alert-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.alert-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.alert-info {
    background: #e0f2fe;
    border-color: #bae6fd;
    color: #0369a1;
}

/* ==========================================================================
   CAN TIMELINE / AUDIT TRAIL
   ========================================================================== */
.timeline {
    position: relative;
    padding-left: 28px;
    margin: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-dot {
    position: absolute;
    left: -28px;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.2);
}

.timeline-dot.dot-delivered { border-color: #7c3aed; }
.timeline-dot.dot-returned { border-color: #059669; }
.timeline-dot.dot-dispatched { border-color: #d97706; }

.timeline-content {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
}

.timeline-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-time {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.timeline-locations {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.timeline-actor {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ==========================================================================
   MOBILE WEB APP: DELIVERY TERMINAL (PWA FEEL)
   ========================================================================== */
.mobile-app-wrapper {
    max-width: 540px;
    margin: 0 auto;
    min-height: 100vh;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.mobile-header {
    background: #0f172a;
    color: #ffffff;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 60;
    box-shadow: var(--shadow-md);
}

.mobile-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.mobile-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.mobile-brand-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
}

.mobile-brand-sub {
    font-size: 11px;
    color: #94a3b8;
}

.mobile-body {
    flex: 1;
    padding: 18px 16px 90px; /* bottom padding for bottom nav */
}

/* Bottom Navigation Bar */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 540px;
    height: 68px;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 70;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    padding: 0 4px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    gap: 3px;
    flex: 1;
}

.bottom-nav-item svg, .bottom-nav-item .icon {
    font-size: 20px;
}

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

.bottom-nav-item.active svg {
    transform: scale(1.1);
}

/* Mobile Action Cards */
.mobile-action-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-primary);
}

.mobile-action-card:hover, .mobile-action-card:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.mobile-action-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.mac-deliver { background: #e0f2fe; color: #0284c7; }
.mac-collect { background: #f5f3ff; color: #7c3aed; }
.mac-truck { background: #ecfdf5; color: #059669; }
.mac-return { background: #fffbeb; color: #d97706; }
.mac-map { background: #eff6ff; color: #2563eb; }
.mac-addbiz { background: #fdf2f8; color: #db2777; }

.mobile-action-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.mobile-action-info p {
    font-size: 12.5px;
    color: var(--text-secondary);
}

.mobile-action-chevron {
    margin-left: auto;
    font-size: 20px;
    color: var(--text-muted);
}

/* Can Selection Pills in Mobile Delivery */
.can-pick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.can-pick-card {
    border: 2px solid var(--border-color);
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.can-pick-card input[type="checkbox"] {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.can-pick-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.can-pick-code {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.can-pick-cap {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Toggle Choice: Left at Business vs Emptied */
.action-choice-container {
    background: #f1f5f9;
    border-radius: var(--radius-md);
    padding: 4px;
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.action-choice-btn {
    flex: 1;
    padding: 8px;
    text-align: center;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: var(--transition);
}

.action-choice-btn.active-left {
    background: #7c3aed;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.action-choice-btn.active-emptied {
    background: #0284c7;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@media (max-width: 900px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.open {
        transform: translateX(0);
    }
    .admin-main {
        margin-left: 0;
    }
    .content-container {
        padding: 20px 16px;
    }
    .form-grid-2, .form-grid-3 {
        grid-template-columns: 1fr;
    }
}
