        /* Dashboard home redesign */
        .dashboard-home-page {
            display: flex;
            flex-direction: column;
            gap: 22px;
            color: #111827;
            font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", sans-serif;
            font-synthesis: none;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        .dashboard-home-page * {
            font-family: inherit;
        }

        .dashboard-home-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .dashboard-home-title {
            margin: 0;
            font-size: 48px;
            line-height: 1.08;
            font-weight: 700;
            color: #19863a;
            letter-spacing: -0.03em;
        }

        .dashboard-home-kpis {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .dashboard-home-kpi-card {
            border: 1px solid rgba(17, 24, 39, 0.08);
            border-radius: 18px;
            background: #fff;
            min-height: 96px;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 22px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
            transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
            text-align: left;
            width: 100%;
            color: inherit;
        }

        button.dashboard-home-kpi-card {
            cursor: pointer;
        }

        button.dashboard-home-kpi-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
        }

        .dashboard-home-kpi-card-green {
            border-color: rgba(34, 197, 94, 0.42);
            box-shadow: 0 14px 30px rgba(34, 197, 94, 0.08);
        }

        .dashboard-home-kpi-icon {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .dashboard-home-kpi-icon svg,
        .dashboard-home-kpi-arrow svg,
        .dashboard-home-btn svg,
        .dashboard-home-refresh-btn svg,
        .dashboard-home-link-btn svg,
        .dashboard-home-empty-illustration svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .dashboard-home-kpi-icon-green { background: #eef9ef; color: #1f9d3e; }
        .dashboard-home-kpi-icon-orange { background: #fff5e6; color: #e58f17; }
        .dashboard-home-kpi-icon-blue { background: #edf4ff; color: #2b7fff; }
        .dashboard-home-kpi-icon-red { background: #fff0f0; color: #ef4444; }

        .dashboard-home-kpi-copy {
            min-width: 0;
            flex: 1;
        }

        .dashboard-home-kpi-label {
            font-size: 14px;
            line-height: 1.3;
            font-weight: 550;
            color: #4b5563;
            margin-bottom: 7px;
        }

        .dashboard-home-kpi-value {
            font-size: 36px;
            line-height: 1;
            font-weight: 700;
            letter-spacing: -0.025em;
            color: #0f172a;
        }

        .dashboard-home-kpi-value-green { color: #16a34a; }
        .dashboard-home-kpi-value-orange { color: #f59e0b; }
        .dashboard-home-kpi-value-blue { color: #2b7fff; }
        .dashboard-home-kpi-value-red { color: #ef4444; }

        .dashboard-home-kpi-arrow {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            flex: 0 0 auto;
        }

        .dashboard-home-main-card {
            background: #fff;
            border: 1px solid rgba(17, 24, 39, 0.08);
            border-radius: 22px;
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.045);
            padding: 28px 28px 30px;
        }

        .dashboard-home-main-card:has(.dashboard-home-table-wrap) {
            padding-bottom: 0;
            overflow: hidden;
        }

        .dashboard-home-main-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 18px;
        }

        .dashboard-home-main-head h2 {
            margin: 0;
            font-size: 28px;
            line-height: 1.18;
            font-weight: 650;
            color: #111827;
            letter-spacing: -0.018em;
        }

        .dashboard-home-refresh-btn {
            border: 1px solid rgba(17, 24, 39, 0.10);
            background: #fff;
            border-radius: 13px;
            min-height: 46px;
            padding: 0 17px;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-size: 14px;
            font-weight: 550;
            color: #1f2937;
            cursor: pointer;
            transition: background 160ms ease, border-color 160ms ease;
        }

        .dashboard-home-refresh-btn:hover {
            background: #f8faf9;
            border-color: rgba(34, 197, 94, 0.24);
        }

        .dashboard-home-table-wrap {
            border: 1px solid #e5e7eb;
            border-radius: 17px;
            overflow: hidden;
            background: #fff;
        }

        .dashboard-home-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
        }

        .dashboard-home-table th,
        .dashboard-home-table td {
            padding: 15px 18px;
            border-bottom: 1px solid #e5e7eb;
            text-align: left;
            line-height: 1.35;
            background: transparent;
        }

        .dashboard-home-table th {
            font-size: 14px;
            font-weight: 600;
            color: #26303d;
            background: #fff;
        }

        .dashboard-home-table td {
            color: #4b5563;
            font-size: 15px;
            font-weight: 400;
        }

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

        .dashboard-home-check-col {
            width: 70px;
            padding-left: 17px !important;
            padding-right: 12px !important;
        }

        .dashboard-home-checkbox {
            width: 22px;
            height: 22px;
            border-radius: 6px;
            accent-color: var(--primary-color);
            cursor: pointer;
        }

        .dashboard-home-package-id {
            color: #169a38 !important;
            font-weight: 600 !important;
            letter-spacing: -0.01em;
        }

        .dashboard-home-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            margin: 20px -28px 0;
            padding: 18px 28px 22px;
            border-top: 1px solid rgba(17, 24, 39, 0.08);
            background: rgba(255, 255, 255, 0.98);
            flex-wrap: wrap;
        }

        .dashboard-home-selected-count {
            font-size: 16px;
            font-weight: 500;
            color: #374151;
        }

        .dashboard-home-actions,
        .dashboard-home-empty-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .dashboard-home-btn {
            min-height: 52px;
            padding: 0 23px;
            border-radius: 13px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid transparent;
            cursor: pointer;
            transition: background 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
        }

        .dashboard-home-btn:disabled {
            cursor: not-allowed;
            opacity: 0.55;
        }

        .dashboard-home-btn-primary {
            background: var(--primary-color);
            color: #fff;
            box-shadow: 0 8px 18px rgba(56, 184, 3, 0.14);
        }

        .dashboard-home-btn-primary:disabled {
            color: #7d8780;
            background: #eef1ef;
            border-color: #e1e6e2;
            box-shadow: none;
            opacity: 1;
        }

        .dashboard-home-btn-primary:hover:not(:disabled) {
            background: var(--primary-dark);
        }

        .dashboard-home-btn-secondary {
            background: #fff;
            color: var(--primary-color);
            border-color: rgba(56, 184, 3, 0.38);
        }

        .dashboard-home-btn-secondary:hover {
            background: #f4fbf1;
        }

        .dashboard-home-empty-state {
            min-height: 560px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 30px 20px 24px;
        }

        .dashboard-home-empty-illustration {
            width: 280px;
            max-width: min(100%, 280px);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dashboard-home-empty-image {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .dashboard-home-empty-state h3 {
            margin: 0 0 12px;
            font-size: 32px;
            line-height: 1.15;
            font-weight: 800;
            color: #111827;
            letter-spacing: -0.03em;
        }

        .dashboard-home-empty-state p {
            max-width: 720px;
            margin: 0 0 28px;
            font-size: 16px;
            line-height: 1.6;
            color: #6b7280;
        }

        .dashboard-home-link-btn {
            padding: 0;
            border: none;
            background: transparent;
            color: #2b9b43;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
        }

        .dashboard-home-link-btn:hover {
            color: #1f7d34;
        }

        @media (max-width: 1280px) {
            .dashboard-home-kpis {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 860px) {
            .dashboard-home-title {
                font-size: 38px;
            }

            .dashboard-home-kpis {
                grid-template-columns: 1fr;
            }

            .dashboard-home-main-card {
                padding: 22px 20px 24px;
            }

            .dashboard-home-main-head,
            .dashboard-home-card-footer {
                flex-direction: column;
                align-items: stretch;
            }

            .dashboard-home-actions,
            .dashboard-home-empty-actions {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }

            .dashboard-home-btn,
            .dashboard-home-refresh-btn {
                width: 100%;
            }
        }


        /* Dashboard populated-state single-scroll layout */
        .dashboard-home-page {
            min-height: 0;
            height: auto;
            overflow: visible;
        }

        .dashboard-home-main-card {
            min-height: 0;
        }

        .dashboard-home-table-wrap {
            min-height: 0;
        }

        @media (min-width: 861px) {
            .main-content:has(.dashboard-home-page) {
                overflow-y: auto;
            }
        }

        @media (max-width: 860px) {
            .dashboard-home-page {
                height: auto;
                overflow: visible;
            }

            .dashboard-home-main-card {
                overflow: visible;
            }

            .dashboard-home-table-wrap {
                max-height: 58vh;
            }

            .dashboard-home-card-footer {
                margin: 0 -20px -24px;
                padding: 16px 20px 20px;
            }
        }


        /* Warehouse address modal */
        .warehouse-modal-overlay {
            background: rgba(15, 23, 42, 0.54);
            padding: 16px;
        }

        .warehouse-modal {
            width: min(700px, calc(100vw - 32px));
            max-height: calc(100vh - 32px);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 14px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background: #fff;
            box-shadow: 0 24px 64px rgba(15, 23, 42, 0.24);
        }

        .warehouse-modal-header {
            flex: 0 0 auto;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 18px;
            padding: 20px 24px 16px;
            border-bottom: 1px solid #e6e9ec;
        }

        .warehouse-modal-title {
            color: #1e7f36;
            font-size: 22px;
            line-height: 1.2;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .warehouse-modal-subtitle {
            margin-top: 6px;
            color: #6b7280;
            font-size: 13px;
            line-height: 1.45;
            font-weight: 400;
        }

        .warehouse-modal-close {
            flex: 0 0 auto;
            width: 34px;
            height: 34px;
            margin: -4px -6px 0 0;
            border: 0;
            border-radius: 9px;
            background: transparent;
            color: #6b7280;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: color 150ms ease, background 150ms ease;
        }

        .warehouse-modal-close:hover {
            color: #1f2937;
            background: #f3f4f6;
        }

        .warehouse-modal-close svg,
        .warehouse-modal-tab svg,
        .warehouse-information-banner > svg,
        .warehouse-address-section h3 svg,
        .warehouse-section-heading h3 svg,
        .warehouse-copy-full-btn svg,
        .warehouse-address-copy-btn svg,
        .warehouse-carrier-caret svg,
        .warehouse-carrier-detail-icon svg,
        .warehouse-carrier-note svg,
        .warehouse-important-note > svg {
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .warehouse-modal-close svg {
            width: 19px;
            height: 19px;
        }

        .warehouse-modal-tabs {
            flex: 0 0 auto;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            min-height: 50px;
            border-bottom: 1px solid #e6e9ec;
            background: #fff;
        }

        .warehouse-modal-tab {
            position: relative;
            border: 0;
            border-right: 1px solid #edf0f2;
            background: #fff;
            color: #68707d;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 18px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: color 150ms ease, background 150ms ease;
        }

        .warehouse-modal-tab:last-child {
            border-right: 0;
        }

        .warehouse-modal-tab::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 2px;
            background: transparent;
        }

        .warehouse-modal-tab:hover {
            color: #238b3b;
            background: #f9fcf8;
        }

        .warehouse-modal-tab.is-active {
            color: #238b3b;
            background: #f4faf2;
        }

        .warehouse-modal-tab.is-active::after {
            background: #2aa344;
        }

        .warehouse-modal-tab svg {
            width: 17px;
            height: 17px;
        }

        .warehouse-modal-body {
            min-height: 0;
            padding: 18px 24px 22px;
            overflow-y: auto;
            scrollbar-gutter: stable;
        }

        .warehouse-information-banner {
            min-height: 56px;
            border: 1px solid #cce9c7;
            border-radius: 10px;
            padding: 12px 16px;
            background: #f2faef;
            color: #28753a;
            display: flex;
            align-items: center;
            gap: 13px;
            font-size: 13px;
            line-height: 1.45;
            font-weight: 500;
        }

        .warehouse-information-banner > svg {
            flex: 0 0 auto;
            width: 21px;
            height: 21px;
            color: #39a34b;
        }

        .warehouse-pickup-banner {
            align-items: flex-start;
            min-height: 56px;
            padding-top: 11px;
            padding-bottom: 11px;
        }

        .warehouse-pickup-panel {
            padding-top: 14px;
            padding-bottom: 18px;
        }

        .warehouse-copy-full-btn {
            width: 100%;
            min-height: 50px;
            margin-top: 18px;
            border: 0;
            border-radius: 10px;
            background: #2fad42;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 11px;
            font-size: 15px;
            font-weight: 650;
            cursor: pointer;
            box-shadow: 0 5px 12px rgba(47, 173, 66, 0.15);
            transition: background 150ms ease, box-shadow 150ms ease;
        }

        .warehouse-copy-full-btn:hover {
            background: #279d39;
            box-shadow: 0 5px 12px rgba(39, 157, 57, 0.18);
        }

        .warehouse-copy-full-btn svg {
            width: 19px;
            height: 19px;
        }

        .warehouse-address-section {
            margin-top: 22px;
            border: 1px solid #dde2e6;
            border-radius: 12px;
            padding: 15px;
            background: #fff;
        }

        .warehouse-address-section h3,
        .warehouse-section-heading h3,
        .warehouse-carrier-section > h3 {
            margin: 0;
            color: #202733;
            font-size: 13px;
            line-height: 1.4;
            font-weight: 650;
        }

        .warehouse-address-section h3,
        .warehouse-section-heading h3 {
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .warehouse-address-section h3 svg,
        .warehouse-section-heading h3 svg {
            width: 18px;
            height: 18px;
            color: #2ca344;
        }

        .warehouse-address-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-top: 13px;
        }

        .warehouse-address-field,
        .warehouse-carrier-detail-field {
            min-width: 0;
            min-height: 68px;
            border: 1px solid #e3e7ea;
            border-radius: 10px;
            background: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 9px 10px 12px;
        }

        .warehouse-address-field-copy {
            min-width: 0;
            flex: 1 1 auto;
        }

        .warehouse-address-label {
            margin-bottom: 5px;
            color: #6b7280;
            font-size: 11px;
            line-height: 1.2;
            font-weight: 500;
        }

        .warehouse-address-value {
            color: #202733;
            font-size: 13px;
            line-height: 1.35;
            font-weight: 550;
            white-space: pre-line;
            overflow-wrap: anywhere;
        }

        .warehouse-address-copy-btn {
            flex: 0 0 auto;
            width: 32px;
            height: 32px;
            border: 1px solid #dfe4e8;
            border-radius: 9px;
            background: #fff;
            color: #607085;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
        }

        .warehouse-address-copy-btn:hover {
            color: #238b3b;
            border-color: #bcdcbc;
            background: #f5fbf3;
        }

        .warehouse-address-copy-btn svg {
            width: 16px;
            height: 16px;
        }

        .warehouse-shared-section {
            margin-top: 14px;
        }

        .warehouse-section-heading p {
            margin: 4px 0 0;
            color: #6b7280;
            font-size: 11px;
            line-height: 1.35;
        }

        .warehouse-shared-grid {
            display: grid;
            grid-template-columns: 1.25fr 0.95fr 0.85fr;
            gap: 10px;
            margin-top: 10px;
        }

        .warehouse-shared-grid .warehouse-address-field {
            min-height: 58px;
        }

        .warehouse-carrier-section {
            margin-top: 16px;
        }

        .warehouse-carrier-list {
            display: grid;
            gap: 7px;
            margin-top: 9px;
        }

        .warehouse-carrier-card {
            border: 1px solid #dfe4e8;
            border-radius: 9px;
            background: #fff;
            overflow: hidden;
            transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
        }

        .warehouse-carrier-card.is-expanded {
            border-color: #4b85ff;
            background: #f8fbff;
            box-shadow: 0 0 0 1px rgba(75, 133, 255, 0.08);
        }

        .warehouse-carrier-toggle {
            width: 100%;
            min-height: 58px;
            border: 0;
            background: transparent;
            display: grid;
            grid-template-columns: 64px minmax(0, 1fr) auto 24px;
            align-items: center;
            gap: 10px;
            padding: 7px 12px;
            color: inherit;
            text-align: left;
            cursor: pointer;
        }

        .warehouse-carrier-toggle:hover {
            background: #fbfcfc;
        }

        .warehouse-carrier-card.is-expanded .warehouse-carrier-toggle:hover {
            background: #f8fbff;
        }

        .warehouse-carrier-logo {
            width: 64px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .warehouse-carrier-logo img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .warehouse-carrier-logo-ups img {
            width: 34px;
        }

        .warehouse-carrier-logo-brt img {
            width: 46px;
        }

        .warehouse-carrier-logo-poste-italiane img {
            width: 68px;
        }

        .warehouse-carrier-copy {
            min-width: 0;
            display: grid;
            gap: 3px;
        }

        .warehouse-carrier-copy strong {
            color: #202733;
            font-size: 13px;
            line-height: 1.25;
            font-weight: 700;
        }

        .warehouse-carrier-copy > span {
            color: #5f6977;
            font-size: 11px;
            line-height: 1.35;
            font-weight: 400;
            overflow-wrap: anywhere;
        }

        .warehouse-carrier-badge {
            min-height: 24px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            padding: 3px 8px;
            font-size: 9.5px;
            line-height: 1.15;
            font-weight: 600;
            white-space: nowrap;
        }

        .warehouse-carrier-badge-blue {
            color: #2865da;
            border: 1px solid #8ab0ff;
            background: #f7faff;
        }

        .warehouse-carrier-badge-green {
            color: #247b37;
            border: 1px solid #bee1bd;
            background: #eff9ec;
        }

        .warehouse-carrier-caret {
            width: 24px;
            height: 24px;
            color: #36516e;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .warehouse-carrier-caret svg {
            width: 17px;
            height: 17px;
            transition: transform 150ms ease;
        }

        .warehouse-carrier-card.is-expanded .warehouse-carrier-caret {
            color: #2865da;
        }

        .warehouse-carrier-card.is-expanded .warehouse-carrier-caret svg {
            transform: rotate(180deg);
        }

        .warehouse-carrier-details {
            padding: 0 12px 10px;
        }

        .warehouse-carrier-detail-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            padding-top: 10px;
            border-top: 1px solid #dce6f6;
        }

        .warehouse-carrier-detail-field {
            min-height: 64px;
            border-color: #dce6f6;
            background: rgba(255, 255, 255, 0.72);
        }

        .warehouse-carrier-detail-icon {
            flex: 0 0 auto;
            width: 28px;
            height: 28px;
            color: #52708e;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .warehouse-carrier-detail-icon svg {
            width: 17px;
            height: 17px;
        }

        .warehouse-carrier-note {
            min-height: 36px;
            margin-top: 8px;
            border: 1px solid #d8e5ff;
            border-radius: 7px;
            background: #eff5ff;
            color: #2865da;
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 8px 10px;
            font-size: 11px;
            line-height: 1.35;
            font-weight: 500;
        }

        .warehouse-carrier-note svg {
            flex: 0 0 auto;
            width: 16px;
            height: 16px;
        }

        .warehouse-important-note {
            display: flex;
            align-items: flex-start;
            gap: 11px;
            margin: 16px -24px -18px;
            border-top: 1px solid #e6e9ec;
            padding: 13px 24px 15px;
            color: #536171;
            background: #fff;
        }

        .warehouse-important-note > svg {
            flex: 0 0 auto;
            width: 18px;
            height: 18px;
            margin-top: 1px;
            color: #6f8193;
        }

        .warehouse-important-note div {
            min-width: 0;
            display: grid;
            gap: 4px;
        }

        .warehouse-important-note strong {
            color: #202733;
            font-size: 12px;
            font-weight: 650;
        }

        .warehouse-important-note span {
            color: #6b7280;
            font-size: 11px;
            line-height: 1.35;
            font-weight: 400;
        }

        .warehouse-modal button:focus-visible {
            outline: 3px solid rgba(47, 173, 66, 0.26);
            outline-offset: 2px;
        }

        @media (max-width: 520px) {
            .warehouse-modal-overlay {
                padding: 8px;
            }

            .warehouse-modal {
                width: calc(100vw - 16px) !important;
                max-height: calc(100vh - 16px);
                margin: 8px auto;
                border-radius: 12px !important;
            }

            .warehouse-modal-header {
                padding: 16px 16px 13px;
            }

            .warehouse-modal-title {
                font-size: 20px;
            }

            .warehouse-modal-subtitle {
                max-width: 290px;
                font-size: 12px;
            }

            .warehouse-modal-tabs {
                min-height: 48px;
            }

            .warehouse-modal-tab {
                gap: 7px;
                padding: 0 10px;
                font-size: 12px;
            }

            .warehouse-modal-body {
                padding: 14px 12px 16px;
            }

            .warehouse-information-banner {
                padding: 11px 12px;
                font-size: 12px;
            }

            .warehouse-copy-full-btn {
                min-height: 46px;
                margin-top: 14px;
            }

            .warehouse-address-section {
                margin-top: 16px;
                padding: 12px;
            }

            .warehouse-address-grid,
            .warehouse-shared-grid,
            .warehouse-carrier-detail-grid {
                grid-template-columns: 1fr;
            }

            .warehouse-carrier-toggle {
                grid-template-columns: 58px minmax(0, 1fr) 22px;
                gap: 8px;
                padding: 9px 10px;
            }

            .warehouse-carrier-logo {
                width: 58px;
            }

            .warehouse-carrier-logo-poste-italiane img {
                width: 56px;
            }

            .warehouse-carrier-badge {
                grid-column: 2 / 3;
                justify-self: start;
                margin-top: 2px;
            }

            .warehouse-carrier-caret {
                grid-column: 3;
                grid-row: 1 / span 2;
            }

            .warehouse-important-note {
                margin: 18px -12px -16px;
                padding: 14px 12px 15px;
            }
        }
