/* Autana global backoffice design system. Keep route-specific rules out of this file. */
:root {
    --au-canvas: #f3f6f8;
    --au-surface: #ffffff;
    --au-surface-muted: #f7faf9;
    --au-ink: #16211f;
    --au-muted: #667570;
    --au-border: #dbe4e1;
    --au-brand: #0f766e;
    --au-brand-strong: #115e59;
    --au-navy: #102a3c;
    --au-success: #15803d;
    --au-warning: #b45309;
    --au-danger: #b42318;
    --au-info: #1d4ed8;
    --au-radius-sm: 6px;
    --au-radius: 8px;
    --au-shadow: 0 8px 24px rgba(18, 42, 37, 0.07);
    --au-content: 1240px;
    --au-space-1: 4px;
    --au-space-2: 8px;
    --au-space-3: 12px;
    --au-space-4: 16px;
    --au-space-5: 20px;
    --au-space-6: 24px;
}

.autana-backoffice {
    color: var(--au-ink);
    background: var(--au-canvas);
}

.autana-backoffice .autana-main {
    width: min(100%, var(--au-content));
    min-width: 0;
    margin-inline: auto;
}

.autana-backoffice .autana-topbar {
    min-width: 0;
    padding-bottom: var(--au-space-4);
    border-bottom: 1px solid var(--au-border);
}

.autana-backoffice .autana-page-header h1 {
    margin: 0;
    color: var(--au-ink);
    font-size: clamp(1.55rem, 2.1vw, 2rem);
    line-height: 1.15;
    letter-spacing: 0;
}

.autana-backoffice .autana-page-subtitle {
    max-width: 760px;
    color: var(--au-muted);
    font-size: 0.94rem;
}

.au-page-header,
.au-section-header,
.au-action-bar,
.au-status-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--au-space-3);
}

.au-section-header {
    align-items: flex-start;
}

.au-section-header h2,
.au-section-header h3,
.au-section-header p {
    margin: 0;
}

.au-section-header p {
    margin-top: var(--au-space-1);
    color: var(--au-muted);
    line-height: 1.45;
}

.au-section-card,
.autana-backoffice .panel,
.autana-backoffice .autana-card,
.autana-backoffice .autana-card-compact,
.autana-backoffice .autana-form-section,
.autana-backoffice .autana-empty {
    border: 1px solid var(--au-border);
    border-radius: var(--au-radius);
    background: var(--au-surface);
    box-shadow: var(--au-shadow);
}

.au-section-card {
    padding: var(--au-space-5);
}

.autana-backoffice .panel {
    padding: var(--au-space-5);
}

.autana-backoffice .panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--au-space-3);
    margin-bottom: var(--au-space-4);
}

.autana-backoffice .panel-header h2,
.autana-backoffice .panel-header h3,
.autana-backoffice .panel-header p {
    margin: 0;
}

.autana-backoffice .panel-header p {
    margin-top: var(--au-space-1);
    color: var(--au-muted);
}

.autana-backoffice .autana-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--au-space-4);
    align-items: start;
}

.autana-backoffice .form-grid,
.autana-backoffice .edit-grid {
    gap: var(--au-space-4);
}

.autana-backoffice .form-grid > label,
.autana-backoffice .edit-grid > label {
    min-width: 0;
}

.autana-backoffice input,
.autana-backoffice select,
.autana-backoffice textarea {
    max-width: 100%;
}

.autana-backoffice input[readonly] {
    color: var(--au-muted);
    background: var(--au-surface-muted);
}

.business-settings-row__icon,
.business-settings-row__chevron {
    display: grid;
    place-items: center;
}

.business-settings-row__icon .autana-business-icon {
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 50%;
    color: #46606f;
    background: #f2f5f7;
}

.business-settings-row__chevron .autana-business-icon {
    width: 16px;
    height: 16px;
}

.au-section-card--muted {
    background: var(--au-surface-muted);
    box-shadow: none;
}

.au-grid,
.au-metric-grid,
.au-description-list,
.au-form-grid {
    display: grid;
    gap: var(--au-space-3);
}

.au-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.au-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.au-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.au-metric-grid,
.autana-backoffice .metrics-grid,
.autana-backoffice .metric-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: var(--au-space-3);
    margin-bottom: var(--au-space-4);
}

.au-metric-card,
.autana-backoffice .metric {
    display: grid;
    align-content: center;
    gap: var(--au-space-1);
    min-height: 92px;
    padding: var(--au-space-4);
    border: 1px solid var(--au-border);
    border-radius: var(--au-radius);
    background: var(--au-surface);
    box-shadow: none;
}

.au-metric-card span,
.autana-backoffice .metric span {
    color: var(--au-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.au-metric-card strong,
.autana-backoffice .metric strong {
    color: var(--au-ink);
    font-size: 1.35rem;
    line-height: 1.2;
}

.au-status-badge,
.autana-backoffice .autana-status,
.autana-backoffice .status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 26px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.15;
    white-space: nowrap;
}

.au-status-badge--sandbox { color: #6d28d9; background: #ede9fe; }
.au-status-badge--live { color: #991b1b; background: #fee2e2; }
.au-status-badge--active { color: #166534; background: #dcfce7; }
.au-status-badge--neutral { color: #374151; background: #e5e7eb; }
.au-status-badge--success { color: #166534; background: #dcfce7; }
.au-status-badge--pending { color: #92400e; background: #fef3c7; }
.au-status-badge--blocked { color: #374151; background: #e5e7eb; }
.au-status-badge--info { color: #1e40af; background: #dbeafe; }

.au-description-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.au-description-list > div {
    min-width: 0;
    padding: var(--au-space-3);
    border: 1px solid var(--au-border);
    border-radius: var(--au-radius-sm);
    background: var(--au-surface-muted);
}

.au-description-list dt {
    color: var(--au-muted);
    font-size: 0.75rem;
    font-weight: 800;
}

.au-description-list dd {
    margin: var(--au-space-1) 0 0;
    color: var(--au-ink);
    font-size: 0.94rem;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.au-form-field {
    display: grid;
    gap: 6px;
    min-width: 0;
    color: var(--au-ink);
    font-size: 0.84rem;
    font-weight: 800;
}

.au-form-field small {
    color: var(--au-muted);
    font-weight: 500;
}

.au-toggle-card,
.autana-backoffice .check-help {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--au-space-3);
    align-items: start;
    min-height: 64px;
    padding: var(--au-space-3);
    border: 1px solid var(--au-border);
    border-radius: var(--au-radius);
    background: var(--au-surface-muted);
}

.au-toggle-card input,
.autana-backoffice .check-help > input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.au-toggle-card strong,
.au-toggle-card small,
.autana-backoffice .check-help strong,
.autana-backoffice .check-help small {
    display: block;
}

.au-toggle-card small,
.autana-backoffice .check-help small {
    margin-top: var(--au-space-1);
    color: var(--au-muted);
    font-weight: 500;
    line-height: 1.4;
}

.au-alert-banner,
.autana-backoffice .flash {
    padding: var(--au-space-3) var(--au-space-4);
    border: 1px solid transparent;
    border-left-width: 4px;
    border-radius: var(--au-radius-sm);
    line-height: 1.45;
}

.au-alert-banner--info { color: #1e3a8a; border-color: #93c5fd; background: #eff6ff; }
.au-alert-banner--success { color: #166534; border-color: #86efac; background: #f0fdf4; }
.au-alert-banner--warning { color: #854d0e; border-color: #facc15; background: #fefce8; }
.au-alert-banner--danger { color: #991b1b; border-color: #fca5a5; background: #fef2f2; }

.au-empty-state {
    display: grid;
    justify-items: center;
    gap: var(--au-space-2);
    padding: 28px var(--au-space-4);
    color: var(--au-muted);
    text-align: center;
    border: 1px dashed var(--au-border);
    border-radius: var(--au-radius);
    background: var(--au-surface-muted);
}

.au-empty-state strong { color: var(--au-ink); }

.au-action-bar {
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: var(--au-space-4);
    padding-top: var(--au-space-4);
    border-top: 1px solid var(--au-border);
}

.au-primary-button,
.au-secondary-button,
.au-danger-button,
.au-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid transparent;
    border-radius: var(--au-radius-sm);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
}

.au-primary-button { color: #fff; background: var(--au-brand-strong); }
.au-primary-button:hover { background: #0d4743; }
.au-secondary-button { color: var(--au-brand-strong); border-color: var(--au-border); background: #fff; }
.au-secondary-button:hover { border-color: var(--au-brand); background: #eef8f6; }
.au-danger-button { color: #fff; background: var(--au-danger); }
.au-button--primary { color: #fff; background: var(--au-brand-strong); }
.au-button--primary:hover { background: #0d4743; }
.au-button--secondary { color: var(--au-brand-strong); border-color: var(--au-border); background: #fff; }
.au-button--secondary:hover { border-color: var(--au-brand); background: #eef8f6; }
.au-button--danger { color: #fff; background: var(--au-danger); }

.au-price-highlight {
    margin: var(--au-space-4) 0 0;
    color: var(--au-brand-strong);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 900;
}

.au-price-highlight small {
    color: var(--au-muted);
    font-size: 0.88rem;
    font-weight: 650;
}

.au-table-wrap,
.autana-backoffice .table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--au-border);
    border-radius: var(--au-radius);
    background: var(--au-surface);
}

.au-table-wrap table,
.autana-backoffice .table-wrap table {
    width: 100%;
    border-collapse: collapse;
}

.au-table-wrap th,
.autana-backoffice .table-wrap th {
    padding: 10px 12px;
    color: var(--au-muted);
    font-size: 0.72rem;
    text-align: left;
    text-transform: uppercase;
    background: var(--au-surface-muted);
}

.au-table-wrap td,
.autana-backoffice .table-wrap td {
    padding: 11px 12px;
    border-top: 1px solid var(--au-border);
    vertical-align: middle;
}

.au-skeleton {
    min-height: 14px;
    border-radius: 5px;
    background: linear-gradient(90deg, #e8eeec 25%, #f6f9f8 50%, #e8eeec 75%);
    background-size: 200% 100%;
    animation: au-skeleton 1.4s infinite linear;
}

@keyframes au-skeleton { to { background-position: -200% 0; } }

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

.au-stack { display: grid; gap: var(--au-space-4); }
.au-stack--tight { gap: var(--au-space-3); }
.au-span-2 { grid-column: 1 / -1; }

@media (max-width: 920px) {
    .autana-backoffice .autana-main {
        width: 100%;
        padding-inline: var(--au-space-4);
    }

    .au-grid--3,
    .au-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .autana-backoffice .autana-two-column { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    html,
    body.autana-backoffice { overflow-x: hidden; }

    .autana-backoffice .autana-main { padding-inline: var(--au-space-3); }
    .autana-backoffice .autana-topbar,
    .autana-backoffice .autana-page-header,
    .autana-backoffice .autana-page-subtitle,
    .autana-backoffice .topbar-actions,
    .autana-backoffice .autana-action-bar,
    .autana-backoffice .header-actions,
    .autana-backoffice .panel,
    .autana-backoffice section,
    .autana-backoffice form { min-width: 0; max-width: 100%; }

    .autana-backoffice .autana-topbar { display: block; }
    .autana-backoffice .autana-page-header h1,
    .autana-backoffice .autana-page-subtitle,
    .autana-backoffice .breadcrumb,
    .autana-backoffice .pathway {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .autana-backoffice .breadcrumb,
    .autana-backoffice .pathway {
        display: flex;
        flex-wrap: wrap;
        gap: 4px 8px;
    }

    .autana-backoffice .topbar-actions {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: var(--au-space-2);
        margin-top: var(--au-space-3);
    }

    .autana-backoffice .autana-user-chip { display: none; }
    .autana-backoffice .header-actions,
    .autana-backoffice .rrhh-subnav,
    .autana-backoffice .settings-section-bar {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--au-space-2);
        width: 100%;
    }

    .autana-backoffice .header-actions > *,
    .autana-backoffice .rrhh-subnav > *,
    .autana-backoffice .settings-section-bar > * { width: 100%; }
    .au-page-header,
    .au-section-header,
    .au-status-line { align-items: flex-start; flex-direction: column; }
    .au-grid--2,
    .au-grid--3,
    .au-grid--4,
    .au-description-list { grid-template-columns: 1fr; }
    .au-section-card { padding: var(--au-space-4); }
    .autana-backoffice .panel { padding: var(--au-space-4); }
    .autana-backoffice .panel-header { flex-direction: column; }
    .au-metric-grid,
    .autana-backoffice .metrics-grid,
    .autana-backoffice .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .au-metric-card,
    .autana-backoffice .metric { min-height: 80px; padding: var(--au-space-3); }
    .au-action-bar > * { flex: 1 1 100%; }
    .au-primary-button,
    .au-secondary-button,
    .au-danger-button,
    .au-button { width: 100%; }

    .autana-mobile-app-business .business-order-tabs a,
    .autana-mobile-app-business .reservation-wizard-steps li,
    .autana-mobile-app-business .business-order-row > span,
    .autana-mobile-app-business .business-order-row small,
    .autana-mobile-app-business .business-reservation-row span small,
    .autana-mobile-app-business .business-reservation-row > small,
    .autana-mobile-app-business .business-rider-count,
    .autana-mobile-app-business .business-rider-row span small,
    .autana-mobile-app-business .business-rider-load,
    .autana-mobile-app-business .business-settings-row span small {
        font-size: 0.75rem;
        line-height: 1.35;
    }

    .autana-backoffice .table-wrap table:not(.keep-desktop-table) thead { display: none; }
    .autana-backoffice .table-wrap table:not(.keep-desktop-table),
    .autana-backoffice .table-wrap table:not(.keep-desktop-table) tbody,
    .autana-backoffice .table-wrap table:not(.keep-desktop-table) tr,
    .autana-backoffice .table-wrap table:not(.keep-desktop-table) td { display: block; width: 100%; }
    .autana-backoffice .table-wrap table:not(.keep-desktop-table) tr { padding: 8px 0; border-top: 1px solid var(--au-border); }
    .autana-backoffice .table-wrap table:not(.keep-desktop-table) tr:first-child { border-top: 0; }
    .autana-backoffice .table-wrap table:not(.keep-desktop-table) td { display: flex; justify-content: space-between; gap: 12px; padding: 6px 12px; border: 0; }
    .autana-backoffice .table-wrap table:not(.keep-desktop-table) td[data-label]::before { content: attr(data-label); color: var(--au-muted); font-size: 0.72rem; font-weight: 800; }
}

@media (prefers-reduced-motion: reduce) {
    .au-skeleton { animation: none; }
}

/* Agenda multisede: one visible scope shared by reservations, waitlist and resources. */
.au-agenda-location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 16px;
    padding: 12px 14px;
    border: 1px solid #cfe0e8;
    border-radius: var(--au-radius-lg);
    background: linear-gradient(115deg, #eefafb 0%, #fff 58%);
    box-shadow: var(--au-shadow-xs);
}
.au-agenda-location__identity { display: flex; align-items: center; gap: 11px; min-width: 0; }
.au-agenda-location__identity > span:last-child { display: grid; gap: 1px; min-width: 0; }
.au-agenda-location__identity small { color: var(--au-text-muted); font-size: .7rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.au-agenda-location__identity strong { overflow: hidden; color: var(--au-brand-navy); font-size: .95rem; text-overflow: ellipsis; white-space: nowrap; }
.au-agenda-location__icon { display: grid; width: 38px; height: 38px; place-items: center; flex: 0 0 38px; color: #007f8d; background: #dff5f4; border-radius: 11px; }
.au-agenda-location__icon svg { width: 19px; height: 19px; }
.au-agenda-location form { display: flex; align-items: end; gap: 8px; margin: 0; }
.au-agenda-location label { display: grid; gap: 4px; color: var(--au-text-secondary); font-size: .72rem; font-weight: 800; }
.au-agenda-location select { width: clamp(190px, 22vw, 300px); min-height: 38px; padding-block: 6px; background-color: #fff; }
.au-agenda-location__status { padding: 6px 10px; color: #087a66; background: #e6f7ef; border-radius: 999px; font-size: .72rem; font-weight: 800; }

@media (max-width: 620px) {
    .au-agenda-location { align-items: stretch; flex-direction: column; gap: 10px; padding: 11px; }
    .au-agenda-location form,.au-agenda-location label,.au-agenda-location select { width: 100%; }
    .au-agenda-location__status { align-self: flex-start; }
}

/* Reservations */
.au-reservation-home { display: grid; gap: 16px; max-width: 1440px; margin-inline: auto; }
.au-reservation-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.au-reservation-actions > a { display: grid; grid-template-columns: 48px minmax(0,1fr) 20px; gap: 12px; align-items: center; min-height: 86px; padding: 14px 16px; color: var(--au-text-primary); text-decoration: none; background: #fff; border: 1px solid var(--au-border); border-radius: 14px; box-shadow: 0 5px 18px rgba(16,43,50,.035); }
.au-reservation-actions > a:hover { border-color: #9ccfca; }
.au-reservation-actions > a.is-primary { color: #fff; background: linear-gradient(120deg,#08766f,#0aa79d); border-color: transparent; }
.au-reservation-actions > a > span:nth-child(2) { display: grid; }
.au-reservation-actions small { color: var(--au-text-secondary); font-size: .75rem; }
.au-reservation-actions .is-primary small { color: #d9f4f1; }
.au-reservation-actions > a > svg { width: 18px; }
.au-reservation-action-icon { display: grid; place-items: center; width: 46px; height: 46px; color: var(--au-brand-primary-dark); background: #e2f5f2; border-radius: 12px; }
.au-reservation-action-icon svg { width: 21px; }
.au-reservation-actions .is-primary .au-reservation-action-icon { color: #fff; background: rgba(255,255,255,.16); }
.au-reservation-agenda { width: 100%; margin-inline: 0; overflow: hidden; }
.au-reservation-row { display: grid; grid-template-columns: 82px minmax(0,1fr) auto 18px; gap: 14px; align-items: center; min-height: 70px; padding: 10px 16px; color: var(--au-text-primary); text-decoration: none; border-bottom: 1px solid #e9efee; }
.au-reservation-row:last-child { border-bottom: 0; }
.au-reservation-row:hover { background: #f8fbfa; }
.au-reservation-row > span { display: grid; min-width: 0; }
.au-reservation-row small { overflow: hidden; color: var(--au-text-secondary); font-size: .73rem; text-overflow: ellipsis; white-space: nowrap; }
.au-reservation-time { padding-right: 12px; border-right: 1px solid var(--au-border); }
.au-reservation-time strong { font-size: 1rem; }
.au-reservation-row > svg { width: 17px; color: #8aa0a3; }
.au-reservation-wizard { overflow: hidden; }
.au-reservation-wizard .reservation-wizard-steps { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 0; margin: 0; padding: 12px 18px 0; list-style: none; background: #fff; }
.au-reservation-wizard .reservation-wizard-steps li { position: relative; min-width: 0; padding: 10px 6px 14px; overflow: hidden; color: #829194; font-size: .7rem; font-weight: 800; text-align: center; text-overflow: ellipsis; white-space: nowrap; border-bottom: 3px solid #e7eeee; }
.au-reservation-wizard .reservation-wizard-steps li.active { color: var(--au-brand-primary-dark); border-color: var(--au-brand-primary); }
.au-reservation-wizard .reservation-wizard-steps li.complete { color: var(--au-success); border-color: #8fd2ae; }
.au-reservation-wizard .reservation-create-grid { display: block; }
.au-reservation-wizard .reservation-create-section { min-height: 390px; padding: 24px; background: #fff; }
.au-reservation-wizard .reservation-create-section h3 { margin: 0 0 18px; font-size: 1.05rem; }
.au-reservation-wizard .reservation-create-section > label { display: grid; gap: 6px; max-width: 680px; margin-bottom: 14px; }
.au-reservation-wizard .reservation-table-section { min-height: 460px; }
.au-reservation-wizard .reservation-wizard-actions { display: flex; justify-content: space-between; gap: 10px; max-width: 680px; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--au-border); }
.au-reservation-wizard .reservation-confirmation-step { background: #fbfdfc; }
.au-reservation-list-workspace { width: 100%; min-width: 0; padding: 12px; overflow: hidden; }
.au-reservation-status-tabs { padding: 2px 2px 10px; border-bottom: 1px solid var(--au-border); }
.au-reservation-filters { margin: 12px 0; padding: 12px; background: var(--au-surface-subtle); border-radius: 11px; }
.au-reservation-list-workspace .table-wrap { margin: 0; border: 1px solid var(--au-border); border-radius: 11px; }
.au-reservation-list-workspace table { margin: 0; }

@media (max-width: 620px) {
    .au-reservation-actions { grid-template-columns: 1fr; gap: 8px; }
    .au-reservation-actions > a { min-height: 76px; padding: 11px 13px; }
    .au-reservation-row { grid-template-columns: 60px minmax(0,1fr) 16px; gap: 10px; }
    .au-reservation-row .au-state-chip { grid-column: 2; justify-self: start; }
    .au-reservation-row > svg { grid-column: 3; grid-row: 1 / span 2; }
    .au-reservation-wizard .reservation-wizard-steps { padding-inline: 8px; }
    .au-reservation-wizard .reservation-wizard-steps li { font-size: .58rem; }
    .au-reservation-wizard .reservation-create-section { min-height: 430px; padding: 18px 14px; }
}

/* Reservations SVG containment */
.au-reservation-page .au-empty-state > svg,
.au-reservation-page .au-empty-state .au-empty-icon svg { width: 34px; height: 34px; }
.au-reservation-page svg { max-width: 48px; max-height: 48px; }
.autana-backoffice .au-reservation-home .au-empty .au-live-icon { display: grid; width: 56px; height: 56px; place-items: center; }
.autana-backoffice .au-reservation-home .au-empty .au-live-icon svg { width: 28px !important; height: 28px !important; }
.autana-backoffice .au-reservation-home .au-empty { display: grid; gap: 6px; justify-items: start; padding: 20px 16px; }
.autana-backoffice .au-reservation-home .au-empty strong,
.autana-backoffice .au-reservation-home .au-empty span { display: block; }

.autana-sidebar-section > summary svg { width: 17px; height: 17px; flex: 0 0 17px; }
.autana-sidebar-section > summary span { min-width: 0; }
