/* Strumenti condivisi: Note + ricerca funzionalità (sidebar / navbar) */

/* Palette ricerca */
.et-os-search {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none !important;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
    background: rgba(4, 8, 16, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none !important;
}

.et-os-search.is-aperto {
    display: flex !important;
    pointer-events: auto !important;
}

.et-os-search__box {
    width: min(560px, 94vw);
    background: rgba(16, 22, 36, 0.96);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    color: #f8fafc;
}

.et-os-search__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.et-os-search__header > .bi-search {
    color: var(--et-text-muted);
    font-size: 18px;
}

.et-os-search__input {
    flex: 1;
    border: none;
    font-size: 16px;
    background: transparent;
    outline: none;
    color: var(--et-text);
}

.et-os-search__input::placeholder {
    color: var(--et-text-muted);
}

.et-os-search__kbd {
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--et-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.et-os-search__results {
    max-height: 360px;
    overflow-y: auto;
    padding: 6px;
}

.et-os-search__result {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: var(--et-text);
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
}

.et-os-search__result:hover,
.et-os-search__result.is-active {
    background: rgba(255, 59, 74, 0.14);
}

.et-os-search__result-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--et-glass);
    border: 1px solid var(--et-glass-border);
    flex-shrink: 0;
}

.et-os-search__result-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.et-os-search__result-label {
    font-size: 14px;
    font-weight: 600;
}

.et-os-search__result-meta {
    font-size: 11px;
    color: var(--et-text-muted);
}

.et-os-search__result-enter {
    font-size: 12px;
    color: var(--et-text-muted);
    opacity: 0;
    transition: opacity 0.15s;
}

.et-os-search__result.is-active .et-os-search__result-enter {
    opacity: 1;
}

.et-os-search__empty {
    padding: 20px 16px;
    margin: 0;
    font-size: 13px;
    color: var(--et-text-muted);
    text-align: center;
}

.et-os-search__hint {
    padding: 12px 16px;
    font-size: 12px;
    color: var(--et-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ========== Appunti Note (stile Notes) ========== */
.desk-notes {
    --desk-muted: #64748b;
    --desk-ink: #0f172a;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    flex: 1 1 auto;
    min-height: 0;
    height: min(68vh, 780px);
    max-height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
}

.desk-notes-list {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: rgba(255, 248, 220, 0.35);
}

.desk-notes-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 12px 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.desk-notes-list-head strong {
    display: block;
    font-size: 0.92rem;
}

.desk-notes-list-head small {
    display: block;
    font-size: 0.68rem;
    color: var(--desk-muted);
    margin-top: 2px;
}

.desk-notes-scroll {
    flex: 1;
    overflow: auto;
    padding: 6px;
}

.desk-notes-scroll,
.desk-notes-editor,
.desk-notes-revisions,
.desk-notes-reads ul {
    scrollbar-width: thin;
    scrollbar-color: rgba(234, 88, 12, 0.45) transparent;
}

.desk-notes-scroll::-webkit-scrollbar,
.desk-notes-editor::-webkit-scrollbar,
.desk-notes-revisions::-webkit-scrollbar,
.desk-notes-reads ul::-webkit-scrollbar {
    width: 8px;
}

.desk-notes-scroll::-webkit-scrollbar-track,
.desk-notes-editor::-webkit-scrollbar-track,
.desk-notes-revisions::-webkit-scrollbar-track,
.desk-notes-reads ul::-webkit-scrollbar-track {
    background: transparent;
}

.desk-notes-scroll::-webkit-scrollbar-thumb,
.desk-notes-editor::-webkit-scrollbar-thumb,
.desk-notes-revisions::-webkit-scrollbar-thumb,
.desk-notes-reads ul::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.55), rgba(234, 88, 12, 0.55));
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.desk-notes-scroll::-webkit-scrollbar-thumb:hover,
.desk-notes-editor::-webkit-scrollbar-thumb:hover,
.desk-notes-revisions::-webkit-scrollbar-thumb:hover,
.desk-notes-reads ul::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.85), rgba(234, 88, 12, 0.85));
    background-clip: padding-box;
}

.desk-notes-item {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    background: transparent;
    border-radius: 0;
    padding: 12px 10px 11px;
    margin-bottom: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
    transition: background 0.12s ease;
}

.desk-notes-item:last-child {
    border-bottom: 0;
}

.desk-notes-item:hover {
    background: rgba(255, 255, 255, 0.55);
}

.desk-notes-item.is-active {
    background: rgba(245, 197, 24, 0.28);
}

.desk-notes-item-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.desk-notes-item-top strong {
    font-size: 0.8rem;
    font-weight: 750;
    line-height: 1.25;
    flex: 1 1 auto;
    min-width: 0;
}

.desk-notes-status-pill {
    flex: 0 0 auto;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(100, 116, 139, 0.18);
    color: #475569;
}

.desk-notes-status-pill.is-open {
    background: rgba(234, 88, 12, 0.16);
    color: #c2410c;
}

.desk-notes-read-state {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.74rem;
    font-weight: 650;
}

.desk-notes-read-state.is-unread {
    background: rgba(234, 88, 12, 0.12);
    color: #c2410c;
}

.desk-notes-read-state.is-read {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.desk-notes-status-pill.is-accepted {
    background: rgba(14, 165, 233, 0.16);
    color: #0369a1;
}

.desk-notes-status-pill.is-done {
    background: rgba(34, 197, 94, 0.16);
    color: #15803d;
}

.desk-notes-item-meta {
    display: block;
    margin-top: 6px;
    font-size: 0.64rem;
    color: var(--desk-muted);
}

.desk-notes-open-hint {
    color: #c2410c;
    font-weight: 700;
}

.desk-notes-attn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
}

.desk-notes-title-readonly {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 800;
}

.desk-notes-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.desk-notes-row {
    display: flex;
    width: 100%;
}

.desk-notes-row.is-left {
    justify-content: flex-start;
}

.desk-notes-row.is-right {
    justify-content: flex-end;
}

.desk-notes-row .desk-notes-block {
    max-width: min(86%, 520px);
    margin-bottom: 0;
}

.desk-notes-block {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.5);
}

.desk-notes-row.is-left .desk-notes-block {
    border-radius: 4px 16px 16px 16px;
}

.desk-notes-row.is-right .desk-notes-block {
    border-radius: 16px 4px 16px 16px;
}

.desk-notes-block.is-original,
.desk-notes-block.is-opener {
    border-color: rgba(245, 197, 24, 0.35);
    background: rgba(255, 248, 220, 0.5);
}

.desk-notes-block.is-reply {
    border-color: rgba(14, 165, 233, 0.28);
    background: rgba(186, 230, 253, 0.28);
}

.desk-notes-block.is-unread {
    box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.85), 0 8px 22px rgba(245, 197, 24, 0.18);
}

.desk-notes-unread-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 999px;
    background: #ea580c;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.desk-notes-block header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px 12px;
    margin-bottom: 8px;
    font-size: 0.72rem;
}

.desk-notes-block header > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.desk-notes-block header strong {
    font-size: 0.8rem;
}

.desk-notes-block header span {
    color: var(--desk-muted);
}

.desk-notes-block.is-editing {
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.12);
}

.desk-notes-btn--edit {
    width: auto;
    padding: 0 10px;
    font-weight: 700;
    font-size: 0.72rem;
    background: rgba(15, 23, 42, 0.06);
}

.desk-notes-edit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.desk-notes-edit-actions .desk-notes-btn {
    width: auto;
    padding: 0 12px;
}

.desk-notes-body-readonly {
    white-space: pre-wrap;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--desk-ink);
}

.desk-notes-revisions-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 4px 0;
    border: 0;
    background: transparent;
    color: var(--desk-muted);
    font-size: 0.72rem;
    font-weight: 650;
    cursor: pointer;
}

.desk-notes-revisions {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    max-height: 180px;
    overflow: auto;
}

.desk-notes-revisions li {
    padding: 8px 0;
    border-top: 1px dashed rgba(15, 23, 42, 0.1);
}

.desk-notes-revisions-meta {
    font-size: 0.68rem;
    color: var(--desk-muted);
    margin-bottom: 4px;
}

.desk-notes-revisions pre {
    margin: 0;
    white-space: pre-wrap;
    font-family: inherit;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--desk-ink);
    opacity: 0.85;
}

.desk-notes-reply {
    margin-top: 8px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.18);
}

.desk-notes-reply label {
    display: block;
    font-size: 0.72rem;
    color: var(--desk-muted);
    margin-bottom: 6px;
}

.desk-notes-reply textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--desk-ink);
    font: inherit;
    font-size: 0.9rem;
    line-height: 1.45;
    padding: 8px 10px;
    resize: vertical;
    margin-bottom: 8px;
}

.desk-notes-error {
    display: block;
    color: #e11d48;
    font-size: 0.72rem;
    margin-bottom: 6px;
}

.desk-notes-assign.is-readonly {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.desk-notes-assign.is-readonly strong {
    font-size: 0.84rem;
}

.desk-notes-pin {
    font-size: 0.65rem;
    color: #c2410c;
    opacity: 0.9;
}

.desk-notes-item p {
    margin: 4px 0 0;
    font-size: 0.72rem;
    color: var(--desk-muted);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.desk-notes-empty {
    text-align: center;
    padding: 28px 12px;
    color: var(--desk-muted);
}

.desk-notes-empty i {
    font-size: 1.4rem;
    opacity: 0.5;
    margin-bottom: 8px;
}

.desk-notes-empty p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
}

.desk-notes-editor {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    height: 100%;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px 14px 28px;
    -webkit-overflow-scrolling: touch;
}

.desk-notes-editor-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.desk-notes-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.7rem;
    color: var(--desk-muted);
}

.desk-notes-meta i {
    margin-right: 3px;
    opacity: 0.75;
}

.desk-notes-you {
    width: 100%;
}

.desk-notes-you strong {
    color: var(--desk-ink);
}

.desk-notes-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.desk-notes-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.7);
    color: var(--desk-ink);
    cursor: pointer;
    font-size: 0.78rem;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
}

.desk-notes-btn:hover {
    background: rgba(255, 255, 255, 0.95);
}

.desk-notes-btn--new {
    background: linear-gradient(180deg, #ffe566, #f5c518);
    border-color: rgba(180, 130, 0, 0.25);
    color: #5b4300;
}

.desk-notes-btn--primary {
    background: linear-gradient(180deg, #ffe566, #f5c518);
    border-color: transparent;
    color: #5b4300;
    font-weight: 700;
    height: 36px;
    padding: 0 14px;
}

.desk-notes-btn--danger {
    color: #e11d48;
}

.desk-notes-title {
    width: 100%;
    border: 0;
    background: transparent;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--desk-ink);
    padding: 4px 0 8px;
    outline: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    margin-bottom: 10px;
}

.desk-notes-body {
    flex: 1;
    width: 100%;
    min-height: 220px;
    border: 0;
    resize: none;
    background: transparent;
    color: var(--desk-ink);
    font-size: 0.95rem;
    line-height: 1.55;
    outline: none;
    font-family: inherit;
}

.desk-notes-placeholder {
    margin: auto;
    text-align: center;
    max-width: 320px;
    padding: 24px 12px;
}

.desk-notes-placeholder-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: #7a5a00;
    background: linear-gradient(180deg, #fff7cc 0%, #f5c518 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.desk-notes-placeholder h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.desk-notes-placeholder p {
    margin: 0 0 14px;
    font-size: 0.82rem;
    color: var(--desk-muted);
    line-height: 1.4;
}

.desk-notes-assign {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.desk-notes-assign__hint {
    margin: 0;
    font-size: 0.68rem;
    color: var(--desk-muted);
    font-weight: 500;
}

.desk-notes-share-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 168px;
    overflow: auto;
}

.desk-notes-share-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--desk-ink);
    cursor: pointer;
}

.desk-notes-share-list input {
    margin: 0;
    accent-color: #ea580c;
}

.desk-notes-assign > label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--desk-muted);
    margin: 0;
}

.desk-notes-assign select {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--desk-ink);
    font-size: 0.78rem;
    padding: 6px 8px;
}

.desk-notes-workflow {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.45);
}

.desk-notes-workflow.is-open {
    border-color: rgba(234, 88, 12, 0.28);
    background: rgba(254, 215, 170, 0.22);
}

.desk-notes-workflow.is-accepted {
    border-color: rgba(14, 165, 233, 0.28);
    background: rgba(186, 230, 253, 0.22);
}

.desk-notes-workflow.is-done {
    border-color: rgba(34, 197, 94, 0.28);
    background: rgba(187, 247, 208, 0.2);
}

.desk-notes-workflow-status {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: baseline;
    margin-bottom: 8px;
    font-size: 0.78rem;
}

.desk-notes-workflow-status strong {
    font-size: 0.84rem;
}

.desk-notes-timeline {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    font-size: 0.72rem;
    color: var(--desk-muted);
}

.desk-notes-timeline li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 3px 0;
}

.desk-notes-timeline i {
    margin-top: 2px;
    width: 14px;
    text-align: center;
    opacity: 0.8;
}

.desk-notes-workflow-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.desk-notes-btn--accept {
    background: rgba(14, 165, 233, 0.16);
    border-color: rgba(14, 165, 233, 0.28);
    color: #0369a1;
    font-weight: 700;
    width: auto;
    padding: 0 12px;
}

.desk-notes-btn--done {
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(34, 197, 94, 0.28);
    color: #15803d;
    font-weight: 700;
    width: auto;
    padding: 0 12px;
}

.desk-notes-reads {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.desk-notes-reads-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.desk-notes-reads-head strong {
    font-size: 0.78rem;
}

.desk-notes-reads-head small,
.desk-notes-reads-empty {
    font-size: 0.68rem;
    color: var(--desk-muted);
}

.desk-notes-reads-empty {
    margin: 0;
}

.desk-notes-reads ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 120px;
    overflow: auto;
}

.desk-notes-reads li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 0.72rem;
}

.desk-notes-reads li:last-child {
    border-bottom: 0;
}

.desk-notes-reads time {
    color: var(--desk-muted);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .desk-notes {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .desk-notes-list {
        border-right: 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        max-height: 220px;
    }

    .desk-notes-editor {
        overflow: visible;
        height: auto;
        max-height: none;
    }

    .et-os-window__body--notes {
        max-height: none;
        overflow: auto;
    }

    .desk-notes-assign {
        grid-template-columns: 1fr;
    }
}


body:not(.et-os-mode) .et-main:has(.et-note-pagina) {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
}

body:not(.et-os-mode) .et-main:has(.et-note-pagina) .et-contenuto-pagina {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.et-note-pagina {
    --desk-muted: #64748b;
    --desk-ink: #0f172a;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.et-note-pagina .desk-notes {
    flex: 1 1 auto;
    height: 100%;
    max-height: none;
}

body.et-os-mode .et-note-pagina {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

body.et-os-mode .et-os-window__body:has(.et-note-pagina) {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.et-topbar-strumento {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 34px;
    min-width: 34px;
    padding: 0 10px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: inherit;
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1;
}
.et-topbar-strumento:hover,
.et-topbar-strumento:focus {
    background: rgba(15, 23, 42, 0.06);
    color: inherit;
}
.et-topbar-strumento.is-attivo {
    background: rgba(227, 6, 19, 0.08);
    color: #c81e1e;
}
.et-topbar-strumento kbd {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(15, 23, 42, 0.06);
    color: #64748b;
}
.et-topbar-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
}
.et-nav-voce-card__icona {
    position: relative;
}
.et-nav-voce-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .et-note-pagina {
        border-radius: 12px;
    }
}
