/* Forces Safari to treat taps as immediate clicks */
a, button, .btn, [role="button"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Keep the layered backoffice surface consistent across every module. */
.backoffice-main-surface {
    background: #f6f7f9 !important;
}

.modal > .modal-box {
    width: calc(100vw - 2rem);
    max-height: 88vh;
    max-height: min(88vh, calc(100dvh - 2rem));
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid #e3e8ee;
    border-radius: 0.85rem;
    background: #fff;
    box-shadow: 0 18px 48px rgba(26, 31, 54, 0.2);
}

/* Compatibility for the final Bootstrap-style modal still present in legacy views. */
.modal > .modal-dialog {
    width: calc(100vw - 2rem);
    max-width: 64rem;
    max-height: 88vh;
    max-height: min(88vh, calc(100dvh - 2rem));
}

.modal > .modal-dialog > .modal-content {
    max-height: inherit;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid #e3e8ee;
    border-radius: 0.85rem;
    background: #fff;
    box-shadow: 0 18px 48px rgba(26, 31, 54, 0.2);
}

.backoffice-modal-shell,
.backoffice-modal {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: hidden !important;
}

.modal > .modal-box.backoffice-modal-shell {
    padding: 0;
}

.modal > .modal-box:has(> .backoffice-modal-body),
.modal > .modal-box:has(> .overflow-y-auto),
.developer-app-modal,
.workflow-create-modal > .modal-box,
.email-sender-modal > .modal-box {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: hidden !important;
}

.modal > .modal-box:has(> .overflow-y-auto) > .overflow-y-auto {
    min-height: 0;
    flex: 1 1 auto;
}

.developer-app-modal-header,
.developer-app-modal-actions,
.workflow-modal-heading,
.workflow-create-modal .modal-action,
.email-modal-heading,
.email-sender-modal .modal-action {
    flex: 0 0 auto;
}

.developer-app-modal-body,
.workflow-modal-fields,
.email-modal-fields {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
}

.backoffice-modal--sm {
    max-width: 28rem;
}

.backoffice-modal--md {
    max-width: 34rem;
}

.backoffice-modal--lg {
    max-width: 48rem;
}

.backoffice-modal--xl {
    max-width: 64rem;
}

.backoffice-modal--2xl {
    max-width: 72rem;
}

.backoffice-modal-header {
    display: flex;
    flex: 0 0 auto;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e3e8ee;
    background: #f8fafc;
}

.backoffice-modal-title {
    margin: 0;
    color: #1a1f36;
    font-size: 1.125rem;
    font-weight: 680;
    line-height: 1.35;
}

.backoffice-modal-header :is(h1, h2, h3):not(.backoffice-modal-title) {
    margin: 0;
    color: #1a1f36;
    font-size: 1.125rem;
    font-weight: 680;
    line-height: 1.35;
}

.backoffice-modal-header :is(p, small) {
    display: block;
    margin-top: 0.2rem;
    color: #697386;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.backoffice-modal-description {
    margin-top: 0.2rem;
    color: #697386;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.backoffice-modal-body {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1.25rem;
}

.backoffice-modal-footer {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    padding: 0.85rem 1.25rem;
    border-top: 1px solid #e3e8ee;
    background: #fff;
}

/* Inset dialogs with a direct title can use the shared header treatment safely. */
.modal:not([class*="copilot"]):not([id*="copilot"]):not(.subscription-console-modal) > .modal-box:not(.backoffice-modal-shell):not(.p-0) {
    --backoffice-modal-inset: 1.5rem;
}

.modal:not([class*="copilot"]):not([id*="copilot"]):not(.subscription-console-modal) > .modal-box.p-8 {
    --backoffice-modal-inset: 2rem;
}

.modal:not([class*="copilot"]):not([id*="copilot"]):not(.subscription-console-modal) > .modal-box:not(.backoffice-modal-shell):not(.p-0) > :is(h2, h3):first-child,
.modal:not([class*="copilot"]):not([id*="copilot"]):not(.subscription-console-modal) > .modal-box:not(.backoffice-modal-shell):not(.p-0) > form[method="dialog"]:first-child + :is(h2, h3) {
    margin: calc(0px - var(--backoffice-modal-inset)) calc(0px - var(--backoffice-modal-inset)) 1.25rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e3e8ee;
    background: #f8fafc;
    font-size: 1.125rem;
    font-weight: 680;
    line-height: 1.35;
}

.modal:not([class*="copilot"]):not([id*="copilot"]):not(.subscription-console-modal) > .modal-box:not(.backoffice-modal-shell):not(.p-0) > :is(h2, h3):first-child:has(+ p),
.modal:not([class*="copilot"]):not([id*="copilot"]):not(.subscription-console-modal) > .modal-box:not(.backoffice-modal-shell):not(.p-0) > form[method="dialog"]:first-child + :is(h2, h3):has(+ p) {
    margin-bottom: 0;
    padding-bottom: 0.2rem;
    border-bottom: 0;
}

.modal:not([class*="copilot"]):not([id*="copilot"]):not(.subscription-console-modal) > .modal-box:not(.backoffice-modal-shell):not(.p-0) > :is(h2, h3):first-child + p,
.modal:not([class*="copilot"]):not([id*="copilot"]):not(.subscription-console-modal) > .modal-box:not(.backoffice-modal-shell):not(.p-0) > form[method="dialog"]:first-child + :is(h2, h3) + p {
    margin: 0 calc(0px - var(--backoffice-modal-inset)) 1.25rem;
    padding: 0 1.25rem 1rem;
    border-bottom: 1px solid #e3e8ee;
    background: #f8fafc;
    color: #697386;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.modal:not(.workflow-create-modal):not(.email-sender-modal):not(.subscription-console-modal):not(#nodeConfigModal) > .modal-box:not(.backoffice-modal-shell):not(.backoffice-modal):not(.p-0) > .modal-action:last-child,
.modal:not(.workflow-create-modal):not(.email-sender-modal):not(.subscription-console-modal):not(#nodeConfigModal) > .modal-box:not(.backoffice-modal-shell):not(.backoffice-modal):not(.p-0) > form:not([method="dialog"]) > .modal-action:last-child {
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin-right: -0.25rem;
    margin-left: -0.25rem;
    padding: 0.75rem 0.25rem 0.15rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), #fff 35%);
}

@media (max-width: 639px) {
    .modal > .modal-box {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
        max-height: calc(100dvh - 1rem);
        border-radius: 0.7rem;
    }

    .modal > .modal-dialog {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
        max-height: calc(100dvh - 1rem);
    }

    .modal.modal-bottom > .modal-box {
        width: 100%;
        max-height: calc(100vh - 0.5rem);
        max-height: calc(100dvh - 0.5rem);
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .backoffice-modal-header,
    .backoffice-modal-body,
    .backoffice-modal-footer {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

.scheduler-preset-card {
    min-height: 6.5625rem;
}

/* Shared page headers and list pages. */
.backoffice-page-header,
.backoffice-list-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(228, 231, 236, 0.92);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 5px 20px rgba(16, 24, 40, 0.045);
}

.backoffice-page-header--stacked {
    align-items: stretch;
    flex-direction: column;
}

.backoffice-list-heading {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.45rem;
}

.backoffice-list-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #8792a2;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.backoffice-list-breadcrumb a {
    transition: color 150ms ease;
}

.backoffice-list-breadcrumb a:hover {
    color: #635bff;
}

.backoffice-list-title-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.backoffice-list-title {
    margin: 0;
    color: #1a1f36;
    font-size: 1.25rem;
    font-weight: 680;
    letter-spacing: -0.018em;
    line-height: 1.25;
}

.backoffice-list-subtitle {
    max-width: 52rem;
    color: #697386;
    font-size: 0.8125rem;
    line-height: 1.45;
}

.backoffice-list-count {
    display: inline-flex;
    min-width: 1.55rem;
    align-items: center;
    justify-content: center;
    padding: 0.16rem 0.42rem;
    border: 1px solid #d9dee8;
    border-radius: 0.35rem;
    background: #fff;
    color: #697386;
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.2;
}

.backoffice-list-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.backoffice-list-actions .btn {
    min-height: 2.25rem;
    height: 2.25rem;
    border-radius: 0.45rem;
    box-shadow: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: none;
}

.backoffice-list-actions .btn-primary {
    border-color: #635bff;
    background: #635bff;
    color: #fff;
}

.backoffice-list-actions .btn-primary:hover {
    border-color: #5147e5;
    background: #5147e5;
}

.backoffice-list-card {
    overflow: hidden;
    border: 1px solid #e3e8ee;
    border-radius: 0.72rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(26, 31, 54, 0.04), 0 2px 5px rgba(26, 31, 54, 0.025);
}

.backoffice-list-scroll {
    overflow-x: auto;
}

.backoffice-list-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.backoffice-list-table thead th {
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid #e3e8ee;
    background: #f7fafc;
    color: #697386;
    font-size: 0.6875rem;
    font-weight: 650;
    letter-spacing: 0.018em;
    line-height: 1.35;
    text-align: left;
    text-transform: none;
    white-space: nowrap;
}

.backoffice-list-table thead th.text-center {
    text-align: center;
}

.backoffice-list-table thead th.text-right {
    text-align: right;
}

.backoffice-list-table tbody td {
    padding: 0.78rem 0.85rem;
    border-bottom: 1px solid #edf0f5;
    color: #3c4257;
    font-size: 0.8125rem;
    vertical-align: middle;
}

.backoffice-list-table tbody tr:last-child td {
    border-bottom: 0;
}

.backoffice-list-table tbody tr {
    background: #fff;
    transition: background-color 120ms ease;
}

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

.backoffice-list-table tbody td[colspan]:not(.p-0) {
    padding: 2.75rem 1rem;
    text-align: center;
}

.backoffice-list-table .backoffice-list-primary-link {
    color: #1a1f36;
    font-weight: 650;
    text-decoration: none;
}

.backoffice-list-table .backoffice-list-primary-link:hover {
    color: #635bff;
}

.backoffice-list-table .backoffice-list-secondary {
    margin-top: 0.1rem;
    color: #697386;
    font-size: 0.75rem;
}

.backoffice-list-table .backoffice-list-id {
    color: #a3acb9;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
}

.backoffice-list-table .badge {
    min-height: 1.4rem;
    height: auto;
    padding: 0.2rem 0.42rem;
    border-radius: 0.34rem;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Bring legacy list tables into the same system while their markup is migrated. */
.table.table-zebra.voidable {
    width: 100%;
    background: #fff;
}

.table.table-zebra.voidable thead tr {
    background: #f7fafc;
    color: #697386;
    text-transform: none;
}

.table.table-zebra.voidable thead th {
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid #e3e8ee;
    background: #f7fafc;
    color: #697386;
    font-size: 0.6875rem;
    font-weight: 650;
    letter-spacing: 0.018em;
    line-height: 1.35;
    white-space: nowrap;
}

.table.table-zebra.voidable tbody tr,
.table.table-zebra.voidable tbody tr:nth-child(even),
.table.table-zebra.voidable tbody tr:nth-child(odd) {
    background: #fff;
    transition: background-color 120ms ease;
}

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

.table.table-zebra.voidable tbody td {
    padding: 0.78rem 0.85rem;
    border-bottom: 1px solid #edf0f5;
    color: #3c4257;
    font-size: 0.8125rem;
    vertical-align: middle;
}

.table.table-zebra.voidable tbody tr:last-child td {
    border-bottom: 0;
}

.table.table-zebra.voidable .badge {
    min-height: 1.4rem;
    height: auto;
    padding: 0.2rem 0.42rem;
    border-radius: 0.34rem;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.2;
}

.backoffice-list-actions-cell {
    text-align: right;
    white-space: nowrap;
}

.backoffice-list-row-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.18rem;
}

.backoffice-list-row-action {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 0.4rem;
    color: #697386;
    transition: border-color 120ms ease, background-color 120ms ease, color 120ms ease;
}

.backoffice-list-row-action:hover {
    border-color: #dedcff;
    background: #f2f1ff;
    color: #635bff;
}

.backoffice-list-row-action.is-primary {
    color: #635bff;
}

.backoffice-list-row-action.is-warning {
    color: #b7791f;
}

.backoffice-list-row-action.is-warning:hover {
    border-color: #f8dfb6;
    background: #fff8eb;
    color: #9c5c09;
}

.backoffice-list-row-action.is-danger:hover {
    border-color: #ffd8d6;
    background: #fff3f2;
    color: #df1b41;
}

.backoffice-list-pagination {
    border-top: 1px solid #edf0f5;
    padding: 0.7rem 0.85rem;
    background: #fff;
}

@media (max-width: 767px) {
    .backoffice-page-header,
    .backoffice-list-header {
        align-items: stretch;
        flex-direction: column;
        padding: 1rem;
    }

    .backoffice-list-actions {
        justify-content: flex-end;
    }

    .backoffice-list-card {
        border-radius: 0.58rem;
    }
}

/* Table row actions use the compact workflow control language. Text actions
 * intentionally stay untouched; this targets shared controls and legacy
 * icon-only controls in the final table column. */
.backoffice-main-surface table.backoffice-list-table :where(
    .workflow-row-actions .btn,
    .backoffice-list-row-actions .backoffice-list-row-action,
    tbody td:last-child :is(a, button).btn-circle,
    tbody td:last-child :is(a, button).btn-square,
    tbody td:last-child > :is(a, button):not(.btn),
    tbody td:last-child > :where(div, span, form) > :is(a, button):not(.btn)
) {
    display: inline-flex;
    width: 2.15rem;
    min-width: 2.15rem;
    height: 2.15rem;
    min-height: 2.15rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    background: transparent;
    box-shadow: none;
    color: #667085;
    line-height: 1;
    text-decoration: none;
    transition: background-color 120ms ease, color 120ms ease;
}

.backoffice-main-surface table.backoffice-list-table :where(
    .workflow-row-actions .btn,
    .backoffice-list-row-actions .backoffice-list-row-action,
    tbody td:last-child :is(a, button).btn-circle,
    tbody td:last-child :is(a, button).btn-square,
    tbody td:last-child > :is(a, button):not(.btn),
    tbody td:last-child > :where(div, span, form) > :is(a, button):not(.btn)
) > i {
    display: block;
    color: inherit !important;
    font-size: 0.9rem !important;
    line-height: 1;
}

.backoffice-main-surface table.backoffice-list-table :where(
    .workflow-row-actions .btn,
    .backoffice-list-row-actions .backoffice-list-row-action,
    tbody td:last-child :is(a, button).btn-circle,
    tbody td:last-child :is(a, button).btn-square,
    tbody td:last-child > :is(a, button):not(.btn),
    tbody td:last-child > :where(div, span, form) > :is(a, button):not(.btn)
):hover {
    border-color: transparent;
    background: #eef3ff;
    color: #3559c7;
}

.backoffice-main-surface table.backoffice-list-table :where(
    .workflow-row-actions .btn,
    .backoffice-list-row-actions .backoffice-list-row-action,
    tbody td:last-child :is(a, button).btn-circle,
    tbody td:last-child :is(a, button).btn-square,
    tbody td:last-child > :is(a, button):not(.btn),
    tbody td:last-child > :where(div, span, form) > :is(a, button):not(.btn)
):is(.is-danger, .confirm-delete):hover {
    background: #fef3f2;
    color: #b42318;
}

.backoffice-main-surface table.backoffice-list-table :where(
    .workflow-row-actions .btn,
    .backoffice-list-row-actions .backoffice-list-row-action,
    tbody td:last-child :is(a, button).btn-circle,
    tbody td:last-child :is(a, button).btn-square,
    tbody td:last-child > :is(a, button):not(.btn),
    tbody td:last-child > :where(div, span, form) > :is(a, button):not(.btn)
):focus-visible {
    outline: 2px solid #8098f9;
    outline-offset: 2px;
}

/* DaisyUI tooltip-left behavior, scoped to row actions so unrelated tooltips
 * retain the direction chosen by their page. */
.backoffice-main-surface table.backoffice-list-table tbody td:last-child .tooltip > .tooltip-content,
.backoffice-main-surface table.backoffice-list-table tbody td:last-child .tooltip[data-tip]::before {
    right: var(--tt-off);
    left: auto;
    inset-block: var(--tt-inset, 50% auto);
    transform: translateX(calc(var(--tt-pos, 0.25rem) - 0.25rem)) translateY(var(--tt-trans, -50%));
}

.backoffice-main-surface table.backoffice-list-table tbody td:last-child .tooltip::after {
    right: calc(var(--tt-tail) + 1px);
    left: auto;
    inset-block: var(--tt-tail-inset, 50% auto);
    transform: translateX(var(--tt-pos, 0.25rem)) translateY(var(--tt-trans, -50%)) rotate(-90deg);
}

.bg-glow {
  background: radial-gradient(circle, rgba(var(--p),0.1) 0%, rgba(var(--p),0) 70%);
}

/* Optimize rendering for complex sidebars */
.drawer-side {
    will-change: transform;
}

.app-sidebar .sidebar-brand-link {
    gap: 0.75rem;
}

.pm-donut {
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url(/dist/img/donut.svg) no-repeat center;
	background-size: contain;
	font-size: 1em;
	/* Scales the SVG */
	vertical-align: middle;
}

.pm-2x {
	font-size: 2em;
}

.pm-3x {
	font-size: 3em;
}

.pm-4x {
	font-size: 4em;
}

.loader-icon {
      font-size: 1.5rem;
      color: #3b82f6;
      display: inline-block;
      animation: spin 1s linear infinite;
      transform-origin: center center;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

/* * Sentinel UI Glassmorphism System
 * High-performance blurs, gradients, and entrance animations.
 */

:root {
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(148, 163, 184, 0.2);
    --sentinel-blue: #3b82f6;
    --sentinel-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

/* Base Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interactive Hover State */
.glass-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Typography Gradients */
.text-gradient-blue {
    background: var(--sentinel-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sentinel Progress Bar */
.sentinel-progress-container {
    height: 12px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.sentinel-progress-fill {
    height: 100%;
    background: var(--sentinel-gradient);
    border-radius: 999px;
    transition: width 1s ease-in-out;
    position: relative;
}

/* Entrance Animations */
@keyframes sentinelSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-sentinel {
    opacity: 0;
    animation: sentinelSlideUp 0.5s ease-out forwards;
}

/* Staggered Delays for Grids */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@keyframes glassShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: glassShimmer 2s infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.badge-soft { @apply px-2 py-0.5 rounded-md text-[10px] font-bold uppercase tracking-tight border; }
.badge-soft.success { background: #ecfdf5; color: #059669; border-color: #d1fae5; }
.badge-soft.error { background: #fef2f2; color: #dc2626; border-color: #fee2e2; }
.badge-soft.warning { background: #fffbeb; color: #d97706; border-color: #fef3c7; }

/* Scrollbar and UI Consistency */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

/* Refined Professional Styles */
.badge-soft {
    @apply px-2.5 py-1 rounded-full text-[10px] font-extrabold uppercase tracking-tight;
}
.badge-soft.success { background: #ecfdf5; color: #059669; border: 1px solid #d1fae5; }
.badge-soft.error { background: #fef2f2; color: #dc2626; border: 1px solid #fee2e2; }
.badge-soft.warning { background: #fffbeb; color: #d97706; border: 1px solid #fef3c7; }

/* Dashboard Card Hover Effect */
.card-scale { @apply hover:scale-[1.01] transition-transform duration-200; }

/* Desktop sidebar collapsed rail + hover expand overlay */
@media (min-width: 1024px) {
    .app-drawer {
        --sidebar-collapsed-width: 5.5rem;
        --sidebar-expanded-width: 20rem;
        --sidebar-item-height: 2.35rem;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-drawer-side {
        width: var(--sidebar-collapsed-width);
        min-width: var(--sidebar-collapsed-width);
        overflow: visible;
        z-index: 40;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-drawer-side .drawer-overlay {
        display: none;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar {
        width: var(--sidebar-collapsed-width) !important;
        min-width: var(--sidebar-collapsed-width);
        overflow-x: hidden;
        overflow-y: auto;
        opacity: 0.96;
        transition: box-shadow 0.2s ease, opacity 0.16s ease, filter 0.16s ease;
        will-change: opacity;
        border-right: 1px solid rgba(148, 163, 184, 0.25);
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:hover, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:focus-within, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar {
        width: var(--sidebar-expanded-width) !important;
        opacity: 1;
        filter: none;
        animation: sidebarHoverFadeIn 0.16s ease;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar .sidebar-brand {
        justify-content: center;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar .sidebar-brand-link {
        width: 100%;
        justify-content: center;
        gap: 0 !important;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar .sidebar-brand-text {
        display: none;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar .sidebar-search,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar .menu-title {
        display: none !important;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 0.25rem;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li {
        margin-top: 0.25rem !important;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li.mt-4,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li.mt-6 {
        margin-top: 0.25rem !important;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li > a,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li > details > summary {
        display: flex;
        align-items: center;
        box-sizing: border-box;
        justify-content: center;
        gap: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
        height: var(--sidebar-item-height) !important;
        min-height: var(--sidebar-item-height) !important;
        font-size: 0;
        line-height: 1;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li > a i,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li > details > summary i {
        margin: 0 !important;
        width: 1.5rem;
        min-width: 1.5rem;
        text-align: center;
        line-height: 1;
        display: block;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li > details > summary::after {
        display: none;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li > details > summary.menu-parent-active-collapsed {
        background-color: hsl(var(--p) / 0.16);
        color: hsl(var(--p));
        font-weight: 600;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li > details > ul {
        display: none !important;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) .app-sidebar #main-sidebar-menu > li.mt-6 > a {
        font-size: 0;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:hover, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar .sidebar-brand,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:focus-within, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar .sidebar-brand {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:hover, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar .sidebar-brand-link,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:focus-within, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar .sidebar-brand-link {
        justify-content: flex-start;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:hover, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar .sidebar-brand-text,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:focus-within, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar .sidebar-brand-text {
        display: flex;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:hover, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:focus-within, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:hover, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu > li > a,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:hover, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu > li > details > summary,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:focus-within, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu > li > a,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:focus-within, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu > li > details > summary {
        display: flex;
        align-items: center;
        box-sizing: border-box;
        justify-content: flex-start;
        gap: 0.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
        height: var(--sidebar-item-height) !important;
        min-height: var(--sidebar-item-height) !important;
        font-size: 0.95rem;
        line-height: 1;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:hover, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu > li > details > summary::after,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:focus-within, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu > li > details > summary::after {
        display: inline-block;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:hover, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu > li > details[open] > ul,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:focus-within, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu > li > details[open] > ul {
        display: block !important;
    }

    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:hover, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu > li.mt-6 > a,
    :is(.app-drawer.desktop-sidebar-collapsed, html.dw-sidebar-prepaint-collapsed .app-drawer, html.dw-sidebar-prepaint-hovered .app-drawer) :is(.app-drawer-side:focus-within, html.dw-sidebar-prepaint-hovered .app-drawer-side) .app-sidebar #main-sidebar-menu > li.mt-6 > a {
        font-size: 0.95rem;
    }
}

@keyframes sidebarHoverFadeIn {
    from {
        opacity: 0.88;
    }
    to {
        opacity: 1;
    }
}

/* Opt-in list surfaces across legacy backoffice modules. Kept at the end so
 * historical card utilities cannot reintroduce heavy shadows or glass borders. */
.backoffice-main-surface :where(.card, .glass-card, .section-card, .rounded-box):has(.backoffice-list-table) {
    overflow: hidden;
    border: 1px solid #e3e8ee;
    border-radius: 0.72rem;
    background: #fff !important;
    box-shadow: 0 1px 2px rgba(26, 31, 54, 0.04), 0 2px 5px rgba(26, 31, 54, 0.025);
}

.backoffice-list-table code {
    border: 1px solid #e3e8ee;
    border-radius: 0.3rem;
    background: #f7fafc;
    color: #3c4257;
    padding: 0.12rem 0.3rem;
    font-size: 0.6875rem;
}

.backoffice-list-table .btn {
    border-radius: 0.4rem;
    box-shadow: none;
    text-transform: none;
}

/* Page-specific console styles load after donut.css. This scoped layer keeps
 * opted-in list tables consistent without affecting their surrounding UI. */
.backoffice-main-surface table.backoffice-list-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.backoffice-main-surface table.backoffice-list-table thead th {
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid #e3e8ee;
    background: #f7fafc;
    color: #697386;
    font-size: 0.6875rem;
    font-weight: 650;
    letter-spacing: 0.018em;
    line-height: 1.35;
    text-transform: none;
    white-space: nowrap;
}

.backoffice-main-surface table.backoffice-list-table tbody td {
    padding: 0.78rem 0.85rem;
    border-bottom: 1px solid #edf0f5;
    color: #3c4257;
    font-size: 0.8125rem;
    line-height: 1.35;
    vertical-align: middle;
}

.backoffice-main-surface table.backoffice-list-table tbody tr {
    background: #fff;
    transition: background-color 120ms ease;
}

.backoffice-main-surface table.backoffice-list-table tbody tr:hover {
    background: #f8fafc;
}

.backoffice-main-surface table.backoffice-list-table tbody tr:last-child td {
    border-bottom: 0;
}

.backoffice-main-surface table.backoffice-list-table tbody td[colspan]:not(.p-0) {
    padding: 2.75rem 1rem;
    text-align: center;
}

/* Normalize legacy page headers without requiring every module to duplicate markup. */
.backoffice-main-surface #page-path:not(.workflow-console-header):not(.ai-gateway-shell):not(.backoffice-page-header) {
    align-items: flex-end !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
    padding: 1.25rem 1.35rem !important;
    border: 1px solid rgba(228, 231, 236, 0.92) !important;
    border-radius: 1rem !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 5px 20px rgba(16, 24, 40, 0.045) !important;
}

.backoffice-main-surface #page-path:not(.workflow-console-header):not(.ai-gateway-shell):not(.backoffice-page-header) > .absolute {
    display: none;
}

.backoffice-main-surface #page-path:not(.workflow-console-header):not(.ai-gateway-shell):not(.backoffice-page-header) nav {
    margin-bottom: 0.35rem !important;
    color: #8792a2 !important;
    font-size: 0.6875rem !important;
    letter-spacing: 0.025em !important;
}

.backoffice-main-surface #page-path:not(.workflow-console-header):not(.ai-gateway-shell):not(.backoffice-page-header) :is(h1, h2, h3, h4).text-2xl,
.backoffice-main-surface #page-path:not(.workflow-console-header):not(.ai-gateway-shell):not(.backoffice-page-header) :is(h1, h2, h3, h4).text-3xl {
    margin: 0;
    color: #1a1f36 !important;
    font-size: 1.25rem !important;
    font-weight: 680 !important;
    letter-spacing: -0.018em !important;
    line-height: 1.25 !important;
}

.backoffice-main-surface #page-path:not(.workflow-console-header):not(.ai-gateway-shell):not(.backoffice-page-header) #page-element-counter {
    min-width: 1.55rem;
    padding: 0.16rem 0.42rem !important;
    border-color: #d9dee8 !important;
    border-radius: 0.35rem !important;
    background: #fff !important;
    color: #697386 !important;
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
}

.backoffice-main-surface #page-path:not(.workflow-console-header):not(.ai-gateway-shell):not(.backoffice-page-header) .btn {
    min-height: 2.25rem;
    height: 2.25rem;
    border-radius: 0.45rem;
    box-shadow: none;
    font-size: 0.75rem;
    text-transform: none;
}

.backoffice-main-surface #page-path:not(.workflow-console-header):not(.ai-gateway-shell):not(.backoffice-page-header) p {
    font-size: 0.8125rem;
}

@media (max-width: 767px) {
    .backoffice-main-surface #page-path:not(.workflow-console-header):not(.ai-gateway-shell):not(.backoffice-page-header) {
        align-items: stretch !important;
        flex-direction: column !important;
        padding: 1rem !important;
    }

    .backoffice-main-surface #page-path:not(.workflow-console-header):not(.ai-gateway-shell):not(.backoffice-page-header) > :last-child {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

/* ==========================================================================
   Phosphor Extension: ph-donut-copilot
   ========================================================================== */

[class^="ph-donut-copilot"], [class*=" ph-donut-copilot"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.125em;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

/* Regular: donut replaces the primary sparkle in the Phosphor composition. */
.ph-donut-copilot, .ph-donut-copilot.ph-regular {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><circle cx="96" cy="160" r="80" fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><circle cx="96" cy="160" r="32" fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><path d="M184 8L198 42L232 56L198 70L184 104L170 70L136 56L170 42L184 8ZM222 88L230 114L252 122L230 130L222 156L214 130L192 122L214 114L222 88Z" fill="black"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><circle cx="96" cy="160" r="80" fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><circle cx="96" cy="160" r="32" fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><path d="M184 8L198 42L232 56L198 70L184 104L170 70L136 56L170 42L184 8ZM222 88L230 114L252 122L230 130L222 156L214 130L192 122L214 114L222 88Z" fill="black"/></svg>');
}

/* Bold */
.ph-donut-copilot.ph-bold {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><circle cx="96" cy="160" r="80" fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/><circle cx="96" cy="160" r="32" fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/><path d="M184 4L200 40L236 56L200 72L184 108L168 72L132 56L168 40L184 4ZM220 88L230 112L252 122L230 132L220 156L210 132L188 122L210 112L220 88Z" fill="black"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><circle cx="96" cy="160" r="80" fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/><circle cx="96" cy="160" r="32" fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="24"/><path d="M184 4L200 40L236 56L200 72L184 108L168 72L132 56L168 40L184 4ZM220 88L230 112L252 122L230 132L220 156L210 132L188 122L210 112L220 88Z" fill="black"/></svg>');
}

/* Fill */
.ph-donut-copilot.ph-fill {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill-rule="evenodd" d="M96 72a88 88 0 1 0 0 176 88 88 0 0 0 0-176Zm0 52a36 36 0 1 0 0 72 36 36 0 0 0 0-72Z" fill="black"/><path d="M184 4L200 40L236 56L200 72L184 108L168 72L132 56L168 40L184 4ZM220 88L230 112L252 122L230 132L220 156L210 132L188 122L210 112L220 88Z" fill="black"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill-rule="evenodd" d="M96 72a88 88 0 1 0 0 176 88 88 0 0 0 0-176Zm0 52a36 36 0 1 0 0 72 36 36 0 0 0 0-72Z" fill="black"/><path d="M184 4L200 40L236 56L200 72L184 108L168 72L132 56L168 40L184 4ZM220 88L230 112L252 122L230 132L220 156L210 132L188 122L210 112L220 88Z" fill="black"/></svg>');
}
