:root {
    --cc-bg: #f4f7fb;
    --cc-bg-soft: #f8fbff;
    --cc-bg-muted: #eef4ff;
    --cc-surface: #ffffff;
    --cc-surface-subtle: #f7faff;
    --cc-surface-hover: #edf5ff;
    --cc-text: #091633;
    --cc-text-soft: #31415f;
    --cc-text-muted: #667391;
    --cc-border: #d8e2f0;
    --cc-border-soft: #e7edf7;
    --cc-border-strong: #b9c9e1;
    --cc-primary: #155eef;
    --cc-primary-hover: #0b49c8;
    --cc-primary-soft: #e9f2ff;
    --cc-indigo: #6d4aff;
    --cc-indigo-soft: #f1edff;
    --cc-cyan: #08b9d6;
    --cc-danger: #b42318;
    --cc-danger-soft: #fef3f2;
    --cc-warning: #a15c07;
    --cc-warning-soft: #fffaeb;
    --cc-success: #067647;
    --cc-success-soft: #ecfdf3;
    --cc-focus: rgba(21, 94, 239, 0.28);
    --cc-shadow-xs: 0 1px 1px rgba(8, 22, 54, 0.04);
    --cc-shadow-sm: 0 1px 2px rgba(8, 22, 54, 0.07), 0 8px 24px rgba(8, 22, 54, 0.06);
    --cc-radius: 8px;
    --cc-radius-sm: 6px;
    --cc-sidebar-width: 252px;
    --cc-page-max: 1180px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    background: var(--cc-bg);
    color: var(--cc-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.45;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--cc-primary);
    text-decoration: none;
}

a:hover {
    color: var(--cc-primary-hover);
    text-decoration: underline;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button {
    cursor: pointer;
}

button:disabled,
.cc-btn[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.58;
}

.cc-app {
    display: grid;
    grid-template-columns: var(--cc-sidebar-width) minmax(0, 1fr);
    min-height: 100vh;
}

.cc-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    border-right: 1px solid var(--cc-border);
    background: linear-gradient(180deg, #eef5ff 0%, #f7f9fc 48%, #eef2f8 100%);
    padding: 16px 12px;
    overflow-y: auto;
}

.cc-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 4px 8px 16px;
    color: var(--cc-text);
    text-decoration: none;
}

.cc-brand:hover {
    color: var(--cc-text);
    text-decoration: none;
}

.cc-brand-mark {
    display: block;
    flex: 0 0 auto;
    width: 44px;
    height: 32px;
    object-fit: contain;
}

.cc-brand-name {
    display: block;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.15;
}

.cc-brand-area {
    display: block;
    margin-top: 2px;
    color: var(--cc-text-muted);
    font-size: 12px;
    font-weight: 500;
}

.cc-nav-group {
    margin-top: 12px;
}

.cc-nav-label {
    margin: 18px 8px 7px;
    color: var(--cc-text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.cc-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: var(--cc-radius-sm);
    color: #33425f;
    font-weight: 590;
    text-decoration: none;
}

.cc-nav-link:hover {
    background: rgba(255, 255, 255, 0.76);
    color: var(--cc-text);
    text-decoration: none;
}

.cc-nav-link.is-active {
    background: var(--cc-surface);
    color: var(--cc-text);
    box-shadow: var(--cc-shadow-xs);
}

.cc-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--cc-border-strong);
}

.cc-nav-link.is-active .cc-nav-dot {
    background: linear-gradient(135deg, var(--cc-primary), var(--cc-cyan));
}

.cc-sidebar-card {
    margin: 18px 4px 0;
    padding: 12px;
    border: 1px solid rgba(86, 119, 172, 0.24);
    border-radius: var(--cc-radius);
    background: rgba(255, 255, 255, 0.72);
}

.cc-sidebar-card-title {
    margin: 0;
    color: var(--cc-text);
    font-size: 13px;
    font-weight: 700;
}

.cc-sidebar-card-text {
    margin: 4px 0 0;
    color: var(--cc-text-soft);
    font-size: 12px;
}

.cc-main,
.cc-topbar,
.cc-page,
.cc-page-heading,
.cc-grid,
.cc-stack,
.cc-card,
.cc-card-body,
.cc-form,
.cc-form-grid {
    min-width: 0;
}

.cc-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    padding: 12px 28px;
    border-bottom: 1px solid var(--cc-border);
    background: rgba(244, 247, 251, 0.92);
    backdrop-filter: blur(14px);
}

.cc-topbar-title {
    min-width: 0;
}

.cc-topbar-title h1,
.cc-page-heading h1 {
    margin: 0;
    color: var(--cc-text);
    font-size: 22px;
    font-weight: 760;
    line-height: 1.2;
}

.cc-topbar-title p,
.cc-page-heading p {
    margin: 4px 0 0;
    color: var(--cc-text-soft);
    font-size: 13px;
}

.cc-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.cc-user-chip,
.cc-tenant-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    max-width: 280px;
    padding: 5px 9px;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius-sm);
    background: var(--cc-surface);
    color: var(--cc-text-soft);
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--cc-shadow-xs);
}

.cc-user-chip span,
.cc-tenant-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cc-page {
    width: min(100%, var(--cc-page-max));
    margin: 0 auto;
    padding: 28px;
}

.cc-page--narrow {
    --cc-page-max: 840px;
}

.cc-page--wide {
    --cc-page-max: 1580px;
}

.cc-page-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.cc-page-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.cc-stack {
    display: grid;
    gap: 16px;
}

.cc-stack--tight {
    gap: 10px;
}

.cc-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--cc-border-soft);
}

.cc-list-row:last-child {
    border-bottom: 0;
}

.cc-grid {
    display: grid;
    gap: 16px;
}

.cc-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cc-grid--storefront-builder > * {
    min-width: 0;
}

.cc-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cc-grid--metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cc-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cc-media-item {
    display: grid;
    gap: 12px;
}

.cc-media-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius-sm);
    background: var(--cc-bg-muted);
}

.cc-card {
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    background: var(--cc-surface);
    box-shadow: var(--cc-shadow-xs);
}

.cc-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 16px 0;
}

.cc-card-title {
    margin: 0;
    color: var(--cc-text);
    font-size: 14px;
    font-weight: 760;
}

.cc-card-subtitle {
    margin: 4px 0 0;
    color: var(--cc-text-soft);
    font-size: 13px;
}

.cc-card-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.cc-card-body {
    padding: 16px;
}

.cc-card-header + .cc-card-body {
    padding-top: 12px;
}

.cc-card--compact .cc-card-body {
    padding: 12px;
}

.cc-metric {
    display: grid;
    gap: 5px;
}

.cc-metric-label {
    color: var(--cc-text-muted);
    font-size: 12px;
    font-weight: 650;
}

.cc-metric-value {
    color: var(--cc-text);
    font-size: 26px;
    font-weight: 760;
    line-height: 1.1;
}

.cc-metric-note {
    color: var(--cc-text-soft);
    font-size: 12px;
}

.cc-launch-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.cc-launch-percent {
    display: block;
    margin-top: 2px;
    color: var(--cc-text);
    font-size: 28px;
    line-height: 1.1;
}

.cc-progress {
    position: relative;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--cc-surface-hover);
}

.cc-progress-bar {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cc-primary), var(--cc-cyan));
}

.cc-launch-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.cc-launch-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 12px;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius-sm);
    background: var(--cc-surface);
}

.cc-launch-item.is-complete {
    border-color: #abefc6;
    background: var(--cc-success-soft);
}

.cc-launch-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.cc-alert {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    background: var(--cc-surface);
    color: var(--cc-text);
}

.cc-alert::before {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--cc-primary);
}

.cc-alert p,
.cc-alert ul {
    margin: 0;
}

.cc-alert ul {
    padding-left: 18px;
}

.cc-alert-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.cc-alert--success {
    border-color: #abefc6;
    background: var(--cc-success-soft);
}

.cc-alert--success::before {
    background: var(--cc-success);
}

.cc-alert--error {
    border-color: #fecdca;
    background: var(--cc-danger-soft);
}

.cc-alert--error::before {
    background: var(--cc-danger);
}

.cc-alert--warning {
    border-color: #fedf89;
    background: var(--cc-warning-soft);
}

.cc-alert--warning::before {
    background: var(--cc-warning);
}

.cc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
    max-width: 100%;
    padding: 3px 8px;
    border: 1px solid var(--cc-border);
    border-radius: 999px;
    background: var(--cc-surface-subtle);
    color: var(--cc-text-soft);
    font-size: 12px;
    font-weight: 650;
    vertical-align: middle;
}

.cc-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
}

.cc-badge--success {
    border-color: #abefc6;
    background: var(--cc-success-soft);
    color: var(--cc-success);
}

.cc-badge--warning {
    border-color: #fedf89;
    background: var(--cc-warning-soft);
    color: var(--cc-warning);
}

.cc-badge--danger {
    border-color: #fecdca;
    background: var(--cc-danger-soft);
    color: var(--cc-danger);
}

.cc-badge--info {
    border-color: #c7d7fe;
    background: var(--cc-indigo-soft);
    color: var(--cc-indigo);
}

.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid var(--cc-border-strong);
    border-radius: var(--cc-radius-sm);
    background: var(--cc-surface);
    color: var(--cc-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--cc-shadow-xs);
}

.cc-btn:hover {
    background: var(--cc-surface-hover);
    color: var(--cc-text);
    text-decoration: none;
}

.cc-btn:focus-visible,
.cc-input:focus,
.cc-select:focus,
.cc-textarea:focus,
.cc-check:focus-visible {
    border-color: var(--cc-indigo);
    box-shadow: 0 0 0 3px var(--cc-focus);
    outline: none;
}

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

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

.cc-btn--subtle {
    border-color: transparent;
    background: transparent;
    color: var(--cc-text-soft);
    box-shadow: none;
}

.cc-btn--subtle:hover {
    background: rgba(24, 24, 27, 0.06);
}

.cc-btn--danger {
    border-color: #fecdca;
    background: var(--cc-danger-soft);
    color: var(--cc-danger);
}

.cc-btn--small {
    min-height: 30px;
    padding: 5px 9px;
    font-size: 12px;
}

.cc-form {
    display: grid;
    gap: 16px;
}

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

.cc-field {
    display: grid;
    gap: 6px;
}

.cc-label {
    color: var(--cc-text);
    font-size: 13px;
    font-weight: 700;
}

.cc-help,
.cc-error,
.cc-muted {
    margin: 0;
    color: var(--cc-text-soft);
    font-size: 12px;
}

.cc-error {
    color: var(--cc-danger);
}

.cc-input,
.cc-select,
.cc-textarea {
    width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid var(--cc-border-strong);
    border-radius: var(--cc-radius-sm);
    background: var(--cc-surface);
    color: var(--cc-text);
}

.cc-textarea {
    min-height: 96px;
    resize: vertical;
}

.cc-check-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cc-text-soft);
    font-size: 13px;
    font-weight: 600;
}

.cc-check {
    width: 16px;
    height: 16px;
    accent-color: var(--cc-primary);
}

.cc-color-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cc-color-input {
    width: 52px;
    min-height: 38px;
    padding: 4px;
}

.cc-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.cc-option-card {
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 132px;
    padding: 13px;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    background: var(--cc-surface);
}

.cc-option-card:has(input:checked) {
    border-color: var(--cc-primary);
    box-shadow: 0 0 0 2px rgba(0, 108, 91, 0.16);
}

.cc-option-card input {
    position: absolute;
    top: 13px;
    right: 13px;
}

.cc-option-title {
    margin: 0;
    padding-right: 24px;
    font-size: 14px;
    font-weight: 760;
}

.cc-option-price {
    margin: 0;
    font-size: 22px;
    font-weight: 760;
}

.cc-option-note {
    margin: 0;
    color: var(--cc-text-soft);
    font-size: 12px;
}

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

.cc-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.cc-table th,
.cc-table td {
    padding: 12px;
    border-bottom: 1px solid var(--cc-border);
    text-align: left;
    vertical-align: top;
}

.cc-table th {
    color: var(--cc-text-muted);
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
}

.cc-table tbody tr:hover {
    background: var(--cc-surface-subtle);
}

.cc-table--storefront-sections {
    min-width: 0;
    table-layout: fixed;
}

.cc-table--storefront-sections th:nth-child(1),
.cc-table--storefront-sections td:nth-child(1) {
    width: 42%;
}

.cc-table--storefront-sections th:nth-child(2),
.cc-table--storefront-sections td:nth-child(2) {
    width: 16%;
}

.cc-table--storefront-sections th:nth-child(3),
.cc-table--storefront-sections td:nth-child(3),
.cc-table--storefront-sections th:nth-child(4),
.cc-table--storefront-sections td:nth-child(4) {
    width: 21%;
}

.cc-table--storefront-sections .cc-input {
    min-width: 0;
}

.cc-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cc-inventory-adjust-form {
    min-width: 300px;
}

.cc-input--qty {
    max-width: 112px;
}

.cc-input--reason {
    min-width: 150px;
    max-width: 180px;
}

.cc-code {
    display: inline-block;
    max-width: 100%;
    padding: 2px 5px;
    border: 1px solid var(--cc-border);
    border-radius: 4px;
    background: var(--cc-surface-subtle);
    color: var(--cc-text);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    overflow-wrap: anywhere;
}

.cc-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cc-list-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.cc-list-item + .cc-list-item {
    border-top: 1px solid var(--cc-border);
}

.cc-list-title {
    margin: 0;
    font-weight: 700;
}

.cc-list-text {
    margin: 3px 0 0;
    color: var(--cc-text-soft);
    font-size: 13px;
}

.cc-empty {
    display: grid;
    gap: 10px;
    place-items: center;
    padding: 28px;
    border: 1px dashed var(--cc-border-strong);
    border-radius: var(--cc-radius);
    background: var(--cc-bg-soft);
    text-align: center;
}

.cc-empty h2,
.cc-empty h3 {
    margin: 0;
    font-size: 15px;
}

.cc-empty p {
    max-width: 520px;
    margin: 0;
    color: var(--cc-text-soft);
}

.cc-domain-records {
    display: grid;
    gap: 8px;
}

.cc-record {
    display: grid;
    gap: 4px;
    padding: 9px;
    border-radius: var(--cc-radius-sm);
    background: var(--cc-surface-subtle);
}

.cc-record-label {
    color: var(--cc-text-muted);
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
}

.cc-auth-body {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(233, 242, 255, 0.88), rgba(244, 247, 251, 0) 38%),
        var(--cc-bg);
}

.cc-auth-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 24px;
}

.cc-auth-card {
    width: min(100%, 432px);
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    background: var(--cc-surface);
    box-shadow: var(--cc-shadow-sm);
}

.cc-auth-header {
    padding: 22px 22px 0;
}

.cc-auth-header h1 {
    margin: 14px 0 0;
    font-size: 22px;
    font-weight: 760;
}

.cc-auth-header p {
    margin: 5px 0 0;
    color: var(--cc-text-soft);
}

.cc-auth-body-inner {
    padding: 20px 22px 22px;
}

.cc-auth-body-inner h1 {
    margin: 0;
    color: var(--cc-text);
    font-size: 22px;
    font-weight: 760;
    line-height: 1.2;
}

.cc-auth-body-inner h1 + .cc-muted {
    margin-top: 5px;
    margin-bottom: 18px;
}

.cc-auth-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    color: var(--cc-text-soft);
    font-size: 13px;
}

.cc-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cc-mt-2 {
    margin-top: 8px;
}

.cc-mt-4 {
    margin-top: 16px;
}

@media print {
    :root {
        --cc-bg: #ffffff;
        --cc-page-max: none;
    }

    body {
        background: #ffffff;
    }

    .cc-app {
        display: block;
        min-height: auto;
    }

    .cc-sidebar,
    .cc-topbar,
    .cc-print-hidden {
        display: none !important;
    }

    .cc-page {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .cc-card {
        break-inside: avoid;
        box-shadow: none;
    }

    .cc-table {
        min-width: 0;
    }
}

@media (max-width: 1360px) {
    .cc-grid--storefront-builder {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .cc-grid--metrics,
    .cc-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-option-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .cc-app {
        display: block;
    }

    .cc-sidebar {
        position: static;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--cc-border);
    }

    .cc-nav-group {
        display: flex;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .cc-nav-label,
    .cc-sidebar-card {
        display: none;
    }

    .cc-nav-link {
        flex: 0 0 auto;
    }

    .cc-topbar {
        position: static;
        align-items: flex-start;
        padding: 16px;
    }

    .cc-page {
        padding: 16px;
    }

    .cc-page-heading,
    .cc-launch-header,
    .cc-topbar {
        display: grid;
    }

    .cc-topbar-actions,
    .cc-page-actions {
        justify-content: flex-start;
    }

    .cc-grid--two,
    .cc-grid--three,
    .cc-grid--metrics,
    .cc-media-grid,
    .cc-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .cc-topbar-title h1,
    .cc-page-heading h1 {
        font-size: 20px;
    }

    .cc-card-header,
    .cc-launch-item,
    .cc-list-item,
    .cc-auth-footer {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cc-launch-title-row {
        align-items: flex-start;
    }

    .cc-btn {
        width: 100%;
    }

    .cc-actions {
        align-items: stretch;
    }

    .cc-inventory-adjust-form,
    .cc-input--qty,
    .cc-input--reason {
        min-width: 0;
        max-width: none;
    }

    .cc-auth-shell {
        padding: 14px;
    }
}
