.fi-user-avatar {
    object-fit: cover !important;
    object-position: center !important;
}

.fi-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fi-logo::after {
    content: "Alpha v.0.6";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.dark .fi-logo::after,
:root.dark .fi-logo::after {
    border-color: #4b5563;
    background: #374151;
    color: #d1d5db;
}

.fi-user-menu .fi-dropdown-header {
    cursor: pointer;
}

/* Keep Filament modal header/footer visible, scroll only modal content */
.fi-modal-window {
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
}

.fi-modal-window > .fi-modal-header,
.fi-modal-window > .fi-modal-footer,
.fi-modal-window .fi-modal-header,
.fi-modal-window .fi-modal-footer {
    flex: 0 0 auto;
}

.fi-modal-window > .fi-modal-content,
.fi-modal-window > .fi-modal-content-ctn,
.fi-modal-window .fi-modal-content-ctn > .fi-modal-content {
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.slh-media-option {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    max-width: 100%;
}

.slh-media-option__thumb {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.375rem;
    object-fit: cover;
    flex: 0 0 auto;
    border: 1px solid #d1d5db;
    background: #f3f4f6;
}

.slh-media-option__meta {
    display: inline-flex;
    flex-direction: column;
    min-width: 0;
    gap: 0.125rem;
}

.slh-media-option__title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 15rem;
}

.slh-media-option__sub {
    font-size: 0.6875rem;
    color: #6b7280;
    line-height: 1.2;
}

.dark .slh-media-option__thumb,
:root.dark .slh-media-option__thumb {
    border-color: #4b5563;
    background: #1f2937;
}

.dark .slh-media-option__title,
:root.dark .slh-media-option__title {
    color: #f3f4f6;
}

.dark .slh-media-option__sub,
:root.dark .slh-media-option__sub {
    color: #9ca3af;
}

/* Ensure image editor modal stays above Filament sidebar/topbar */
.filepond--image-editor-overlay,
.filepond--image-preview-overlay,
.doka--modal,
.pintura-editor-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10050 !important;
}

.filepond--image-editor,
.filepond--image-editor-wrapper,
.doka--root,
.pintura-editor,
.pintura-root {
    z-index: 10060 !important;
}

.fi-section.fi-collapsible .fi-section-content-ctn {
    overflow: hidden;
    transition:
        max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 220ms ease;
    will-change: max-height, opacity;
}

.fi-section.fi-collapsible.fi-collapsed .fi-section-content-ctn {
    max-height: 0;
    opacity: 0;
}

.fi-section.fi-collapsible.fi-collapsed
    .fi-section-content-ctn
    > .fi-section-content {
    pointer-events: none;
}

/* Keep editor above layout, but preserve Filament's native editor layout */
.fi-fo-file-upload-editor {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10100 !important;
}

.fi-fo-file-upload-editor-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 0 !important;
}

.fi-fo-file-upload-editor-window {
    z-index: 1 !important;
}

@media (prefers-reduced-motion: reduce) {
    .fi-section.fi-collapsible .fi-section-content-ctn {
        transition: none;
    }
}

/* Replace default black browser focus outline with project primary focus ring */
:where(
    a,
    button,
    input,
    select,
    textarea,
    [role="button"],
    summary
):focus-visible {
    outline: 2px solid var(--color-primary) !important;
    outline-offset: 2px;
}

:where(a, button, input, select, textarea, [role="button"], summary):focus:not(
        :focus-visible
    ) {
    outline: none !important;
}

/* Import / Export Center */
.slh-import-export {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slh-import-export__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.slh-io-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.slh-io-card__head {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.slh-io-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
}

.slh-io-card__subtitle {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
}

.slh-io-card__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563;
}

.slh-io-card__text code {
    display: inline-block;
    padding: 0.1rem 0.35rem;
    border-radius: 0.35rem;
    background: #f3f4f6;
    color: #1f2937;
    font-size: 0.8em;
}

.slh-io-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.slh-io-import {
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.slh-io-form,
.slh-io-apply {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem;
}

.slh-io-card > * + .slh-io-alert,
.slh-io-card > * + .slh-io-apply,
.slh-io-card > * + .slh-io-collapsible,
.slh-io-card > * + .slh-io-table-wrap {
    margin-top: 0.875rem;
}

.slh-io-async-state {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.625rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.625rem;
    background: #f9fafb;
}

.slh-io-async-warn {
    margin-top: 0.5rem;
}

.slh-io-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    min-width: 18rem;
    flex: 1 1 18rem;
}

.slh-io-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
}

.slh-io-input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #111827;
    font-size: 0.875rem;
    padding: 0.5rem 0.625rem;
}

.slh-io-input:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 1px;
    border-color: var(--color-primary);
}

.slh-io-file-wrp {
    width: 100%;
}

.slh-io-file-input {
    width: 100%;
}

.slh-io-file-input--hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
}

.slh-io-file-name {
    margin: 0;
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
}

.slh-io-dropzone {
    border: 1px dashed #d1d5db;
    border-radius: 0.625rem;
    min-height: 4.75rem;
    background: #f9fafb;
    padding: 0.75rem 0.875rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition:
        border-color 150ms ease,
        background-color 150ms ease,
        box-shadow 150ms ease;
}

.slh-io-dropzone:hover {
    border-color: #f59e0b;
    background: #fffbeb;
}

.slh-io-dropzone:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-color: var(--color-primary);
}

.slh-io-dropzone__text {
    margin: 0;
    font-size: 0.875rem;
    color: #374151;
}

.slh-io-dropzone__text span {
    color: #d97706;
    font-weight: 600;
}

.slh-io-dropzone__hint {
    margin: 0.3rem 0 0;
    font-size: 0.75rem;
    color: #6b7280;
}

.slh-io-dropzone--dragover,
.slh-io-dropzone--has-file {
    border-color: #f59e0b;
    background: #fffbeb;
}

.slh-io-error {
    margin: 0;
    font-size: 0.75rem;
    color: #dc2626;
}

.slh-io-error--wide {
    width: 100%;
}

.slh-io-preview-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.slh-io-stats {
    margin-top: 0.875rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
}

.slh-io-stat {
    border: 1px solid #e5e7eb;
    border-radius: 0.625rem;
    padding: 0.625rem;
    background: #f9fafb;
}

.slh-io-stat__label {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
}

.slh-io-stat__value {
    margin: 0.2rem 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.slh-io-stat__value--ok {
    color: #047857;
}

.slh-io-stat__value--bad {
    color: #b91c1c;
}

.slh-io-alert {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
    color: #374151;
    background: #ffffff;
}

.slh-io-alert__title {
    margin: 0;
    font-weight: 700;
}

.slh-io-alert p {
    margin: 0.25rem 0 0;
}

.slh-io-progress {
    margin-top: 0.5rem;
}

.slh-io-progress__track {
    width: 100%;
    height: 0.625rem;
    border-radius: 9999px;
    overflow: hidden;
    background: #e5e7eb;
    border: 1px solid #d1d5db;
}

.slh-io-progress__fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    transition: width 300ms ease;
}

.slh-io-progress__label {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #92400e;
}

.slh-io-alert ul {
    margin: 0.35rem 0 0;
    padding-left: 1rem;
}

.slh-io-alert li {
    margin: 0.12rem 0;
}

.slh-io-alert--danger {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.slh-io-alert__list {
    margin-top: 0.5rem;
    max-height: 14rem;
    overflow: auto;
}

.slh-io-alert__list ul {
    margin: 0.25rem 0 0;
    padding-left: 1rem;
}

.slh-io-alert__list li {
    margin: 0.1rem 0;
}

.slh-io-alert--warning {
    border-color: #fcd34d;
    background: #fffbeb;
    color: #92400e;
}

.slh-io-alert--success {
    border-color: #86efac;
    background: #f0fdf4;
    color: #166534;
}

.slh-io-alert--info {
    border-color: #fde68a;
    background: #fffbeb;
    color: #78350f;
}

.slh-io-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.slh-io-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.52);
    backdrop-filter: blur(3px);
}

.slh-io-modal__dialog {
    position: relative;
    width: min(100%, 50rem);
    max-height: min(90vh, 58rem);
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.24);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.slh-io-modal__dialog--wide {
    width: min(100%, 74rem);
}

.slh-io-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.slh-io-modal__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.slh-io-modal__body {
    padding: 0.85rem 1rem 1rem;
    overflow: auto;
}

.slh-io-modal-state {
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #334155;
    border-radius: 0.75rem;
    padding: 0.75rem 0.85rem;
    font-size: 0.82rem;
    line-height: 1.45;
}

.slh-io-modal-state--error {
    border-color: #fecaca;
    background: #fff1f2;
    color: #991b1b;
}

.slh-io-modal-content {
    margin-top: 0.75rem;
}

.slh-io-modal-empty {
    border: 1px dashed #d1d5db;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    color: #64748b;
    font-size: 0.82rem;
}

.slh-io-modal-list {
    display: grid;
    gap: 0.6rem;
}

.slh-io-modal-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #fff;
    padding: 0.65rem 0.75rem;
}

.slh-io-modal-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.slh-io-modal-item__head strong {
    font-size: 0.78rem;
    line-height: 1.25;
    font-weight: 700;
}

.slh-io-modal-item__meta {
    color: #475569;
    font-size: 0.78rem;
    font-weight: 600;
}

.slh-io-modal-item__sub {
    margin: 0;
    color: #64748b;
    font-size: 0.76rem;
}

.slh-io-modal-item ul {
    margin: 0.35rem 0 0;
    padding-left: 1rem;
}

.slh-io-modal-item li {
    margin: 0.12rem 0;
    font-size: 0.8rem;
    color: #1f2937;
}

.slh-io-modal-pagination {
    margin-top: 0.85rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.slh-io-modal-page-meta {
    margin: 0;
    color: #64748b;
    font-size: 0.78rem;
    text-align: center;
}

.slh-io-modal-page-btn {
    border: 1px solid #d1d5db;
    border-radius: 0.625rem;
    background: #fff;
    color: #374151;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.5rem 0.7rem;
    cursor: pointer;
}

.slh-io-modal-page-btn:hover {
    border-color: #f59e0b;
    color: #92400e;
}

.slh-io-modal-page-btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.slh-io-modal__close {
    margin-inline-start: auto;
}

body.slh-io-modal-open {
    overflow: hidden;
}

.slh-io-collapsible {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #fff;
    overflow: hidden;
}

.slh-io-collapsible > summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
    padding: 0.72rem 0.875rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.slh-io-collapsible > summary::-webkit-details-marker {
    display: none;
}

.slh-io-collapsible > summary::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    transition: transform 160ms ease;
    flex: 0 0 auto;
}

.slh-io-collapsible[open] > summary::after {
    transform: rotate(225deg);
}

.slh-io-collapsible__body {
    border-top: 1px solid #e5e7eb;
    padding: 0.7rem 0.8rem 0.8rem;
}

.slh-io-collapsible--warning {
    border-color: #fcd34d;
    background: #fffbeb;
}

.slh-io-collapsible--warning > summary {
    color: #92400e;
}

.slh-io-collapsible--warning > summary::after {
    border-color: #b45309;
}

.slh-io-table-wrap {
    margin-top: 0.875rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.625rem;
    overflow: auto;
}

.slh-io-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 40rem;
}

.slh-io-table th,
.slh-io-table td {
    text-align: left;
    padding: 0.55rem 0.625rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.82rem;
    color: #1f2937;
}

.slh-io-table th {
    background: #f9fafb;
    color: #4b5563;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.slh-io-table tbody tr:last-child td {
    border-bottom: 0;
}

.slh-io-strong {
    font-weight: 700;
}

.slh-io-action-btn {
    position: relative;
}

.slh-io-action-btn[aria-disabled="true"] {
    pointer-events: none;
}

.slh-io-btn-loading {
    opacity: 0.75;
}

.slh-io-btn-loading::after {
    content: "";
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 9999px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    display: inline-block;
    margin-left: 0.5rem;
    animation: slh-io-spin 0.7s linear infinite;
    vertical-align: -0.05rem;
}

@keyframes slh-io-spin {
    to {
        transform: rotate(360deg);
    }
}

.dark .slh-io-card,
:root.dark .slh-io-card {
    border-color: #374151;
    background: #111827;
}

.dark .slh-io-card__title,
.dark .slh-io-card__subtitle,
:root.dark .slh-io-card__title,
:root.dark .slh-io-card__subtitle {
    color: #f9fafb;
}

.dark .slh-io-card__text,
:root.dark .slh-io-card__text {
    color: #cbd5e1;
}

.dark .slh-io-card__text code,
:root.dark .slh-io-card__text code {
    background: #1f2937;
    color: #f3f4f6;
}

.dark .slh-io-import,
:root.dark .slh-io-import {
    border-top-color: #374151;
}

.dark .slh-io-label,
:root.dark .slh-io-label {
    color: #e5e7eb;
}

.dark .slh-io-input,
:root.dark .slh-io-input {
    border-color: #4b5563;
    background: #1f2937;
    color: #f9fafb;
}

.dark .slh-io-file-name,
:root.dark .slh-io-file-name {
    color: #9ca3af;
}

.dark .slh-io-dropzone,
:root.dark .slh-io-dropzone {
    border-color: #4b5563;
    background: #1f2937;
}

.dark .slh-io-dropzone:hover,
.dark .slh-io-dropzone--dragover,
.dark .slh-io-dropzone--has-file,
:root.dark .slh-io-dropzone:hover,
:root.dark .slh-io-dropzone--dragover,
:root.dark .slh-io-dropzone--has-file {
    border-color: #f59e0b;
    background: #2b2617;
}

.dark .slh-io-dropzone__text,
:root.dark .slh-io-dropzone__text {
    color: #e5e7eb;
}

.dark .slh-io-dropzone__hint,
:root.dark .slh-io-dropzone__hint {
    color: #9ca3af;
}

.dark .slh-io-async-state,
:root.dark .slh-io-async-state {
    border-color: #374151;
    background: #1f2937;
}

.dark .slh-io-stat,
:root.dark .slh-io-stat {
    border-color: #374151;
    background: #1f2937;
}

.dark .slh-io-stat__label,
:root.dark .slh-io-stat__label {
    color: #9ca3af;
}

.dark .slh-io-stat__value,
:root.dark .slh-io-stat__value {
    color: #f3f4f6;
}

.dark .slh-io-table-wrap,
:root.dark .slh-io-table-wrap {
    border-color: #374151;
}

.dark .slh-io-table th,
.dark .slh-io-table td,
:root.dark .slh-io-table th,
:root.dark .slh-io-table td {
    border-bottom-color: #374151;
    color: #e5e7eb;
}

.dark .slh-io-table th,
:root.dark .slh-io-table th {
    background: #1f2937;
    color: #9ca3af;
}

.dark .slh-io-progress__track,
:root.dark .slh-io-progress__track {
    background: #1f2937;
    border-color: #374151;
}

.dark .slh-io-progress__label,
:root.dark .slh-io-progress__label {
    color: #fcd34d;
}

.dark .slh-io-modal__dialog,
:root.dark .slh-io-modal__dialog {
    border-color: #374151;
    background: #111827;
}

.dark .slh-io-modal__head,
:root.dark .slh-io-modal__head {
    border-bottom-color: #374151;
}

.dark .slh-io-modal__title,
:root.dark .slh-io-modal__title {
    color: #f3f4f6;
}

.dark .slh-io-modal-state,
:root.dark .slh-io-modal-state {
    border-color: #374151;
    background: #1f2937;
    color: #cbd5e1;
}

.dark .slh-io-modal-state--error,
:root.dark .slh-io-modal-state--error {
    border-color: #7f1d1d;
    background: #3a1719;
    color: #fecaca;
}

.dark .slh-io-modal-empty,
:root.dark .slh-io-modal-empty {
    border-color: #4b5563;
    color: #9ca3af;
}

.dark .slh-io-modal-item,
:root.dark .slh-io-modal-item {
    border-color: #374151;
    background: #111827;
}

.dark .slh-io-modal-item__meta,
.dark .slh-io-modal-item__sub,
:root.dark .slh-io-modal-item__meta,
:root.dark .slh-io-modal-item__sub {
    color: #9ca3af;
}

.dark .slh-io-modal-item li,
:root.dark .slh-io-modal-item li {
    color: #e5e7eb;
}

.dark .slh-io-modal-pagination,
:root.dark .slh-io-modal-pagination {
    border-top-color: #374151;
}

.dark .slh-io-modal-page-meta,
:root.dark .slh-io-modal-page-meta {
    color: #9ca3af;
}

.dark .slh-io-modal-page-btn,
:root.dark .slh-io-modal-page-btn {
    border-color: #4b5563;
    background: #1f2937;
    color: #d1d5db;
}

.dark .slh-io-modal-page-btn:hover,
:root.dark .slh-io-modal-page-btn:hover {
    border-color: #f59e0b;
    color: #fcd34d;
}

.dark .slh-io-collapsible,
:root.dark .slh-io-collapsible {
    border-color: #374151;
    background: #111827;
}

.dark .slh-io-collapsible > summary,
:root.dark .slh-io-collapsible > summary {
    color: #e5e7eb;
}

.dark .slh-io-collapsible > summary::after,
:root.dark .slh-io-collapsible > summary::after {
    border-color: #9ca3af;
}

.dark .slh-io-collapsible__body,
:root.dark .slh-io-collapsible__body {
    border-top-color: #374151;
}

.dark .slh-io-collapsible--warning,
:root.dark .slh-io-collapsible--warning {
    border-color: #92400e;
    background: #2b2617;
}

.dark .slh-io-collapsible--warning > summary,
:root.dark .slh-io-collapsible--warning > summary {
    color: #fcd34d;
}

.dark .slh-io-collapsible--warning > summary::after,
:root.dark .slh-io-collapsible--warning > summary::after {
    border-color: #f59e0b;
}

@media (min-width: 1024px) {
    .slh-import-export__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slh-io-stats {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
