:root {
    --nexus-surface-alt: var(--background-alt-grey);
    --nexus-border: var(--border-default-grey);
}


/*
 * NEXUS est volontairement figé en thème clair.
 * Le thème sombre DSFR n'est pas travaillé pour l'instant : on empêche donc
 * le navigateur et le système d'exploitation d'imposer une apparence sombre.
 */
:root,
html,
body {
    color-scheme: light !important;
}

:root[data-fr-scheme="dark"],
:root[data-fr-theme="dark"],
html[data-fr-scheme="dark"],
html[data-fr-theme="dark"] {
    color-scheme: light !important;
}

body {
    min-height: 100vh;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.nexus-main,
.nexus-main .fr-container,
.nexus-main .fr-grid-row > [class*="fr-col"] {
    min-width: 0;
}

.nexus-main {
    min-height: calc(100vh - 22rem);
}

.nexus-header-service {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nexus-userbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nexus-userbox__identity {
    text-align: right;
}

.nexus-userbox__hint {
    display: block;
}

.nexus-page-intro {
    max-width: 48rem;
}

.nexus-stat-card,
.nexus-notification-card {
    background: var(--background-default-grey);
    border: 1px solid var(--nexus-border);
    height: 100%;
}

.nexus-stat-value {
    display: block;
    margin-bottom: 0.5rem;
}

.nexus-login-shell {
    background: linear-gradient(180deg, var(--background-alt-blue-france) 0, var(--background-default-grey) 18rem);
    min-height: 100vh;
}

.nexus-login-main {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.nexus-login-card {
    background: var(--background-default-grey);
    border: 1px solid var(--nexus-border);
    box-shadow: 0 6px 18px rgba(0, 0, 145, 0.08);
}

.nexus-login-sidecard,
.nexus-dashboard-panel,
.nexus-table-card,
.nexus-notification-panel {
    background: var(--background-default-grey);
    border: 1px solid var(--nexus-border);
}

.nexus-login-demo {
    background: var(--background-contrast-grey);
    border-left: 4px solid var(--border-action-high-blue-france);
}

.nexus-badge-stack {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nexus-table-card .fr-table {
    margin-bottom: 0;
    overflow-x: auto;
}

.nexus-table-card table {
    min-width: 48rem;
}

.nexus-notification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nexus-notification-card--non-lue {
    border-left: 4px solid var(--border-action-high-blue-france);
}

.nexus-footer-note {
    max-width: 44rem;
}

@media (max-width: 48em) {
    .nexus-userbox,
    .nexus-userbox__identity {
        justify-content: flex-start;
        text-align: left;
    }

    .nexus-login-main {
        padding-top: 2rem;
    }
}


.nexus-section-card {
    background: var(--background-default-grey);
    border: 1px solid var(--nexus-border);
}

.nexus-filter-box ul {
    padding-left: 1.25rem;
}

.nexus-notification-meta {
    text-align: right;
}

.nexus-key-value {
    display: grid;
    gap: 1rem;
    margin: 0;
}

.nexus-key-value div {
    display: grid;
    gap: 0.25rem;
}

.nexus-key-value dt {
    font-weight: 700;
}

.nexus-key-value dd {
    margin: 0;
}

@media (max-width: 48em) {
    .nexus-notification-meta {
        text-align: left;
    }
}


.nexus-form-section {
    scroll-margin-top: 2rem;
}

.nexus-form-section__header {
    margin-bottom: 1.5rem;
}

.nexus-checkbox-stack {
    display: grid;
    gap: 0.75rem;
}

.nexus-form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.nexus-step-list,
.nexus-compact-list {
    padding-left: 1.25rem;
}

.nexus-page-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.nexus-page-heading__actions {
    display: flex;
    align-items: flex-start;
}


.nexus-input-auto-group .fr-label {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nexus-badge-auto {
    flex-shrink: 0;
}

.nexus-champ-auto {
    background-color: var(--background-alt-blue-france);
    border-left: 0.375rem solid var(--border-action-high-blue-france);
    font-weight: 500;
}

.nexus-hidden {
    display: none !important;
}


.nexus-nav-admin > .fr-menu {
    min-width: 18rem;
}

@media (min-width: 62em) {
    .nexus-nav-admin {
        position: relative;
    }

    .nexus-nav-admin > .fr-menu {
        left: auto;
        right: 0;
        width: max-content;
    }

    .nexus-nav-admin:hover > .fr-menu,
    .nexus-nav-admin:focus-within > .fr-menu,
    .nexus-nav-admin > .fr-menu.fr-collapse--expanded,
    .nexus-nav-admin > .fr-menu.fr-collapsing {
        max-height: none;
        overflow: visible;
        visibility: visible;
    }

    .nexus-nav-admin:hover > .fr-menu::before,
    .nexus-nav-admin:focus-within > .fr-menu::before,
    .nexus-nav-admin > .fr-menu.fr-collapse--expanded::before,
    .nexus-nav-admin > .fr-menu.fr-collapsing::before {
        margin-top: 0;
    }
}

.nexus-dashboard-panel {
    height: 100%;
}

@media (min-width: 62em) {
    .nexus-userbox__hint {
        max-width: 28rem;
    }
}


.nexus-controls-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.nexus-controls-table-card {
    overflow: hidden;
}

.nexus-table-scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-mention-grey);
    font-size: 0.875rem;
}

.nexus-table-scroll-shell {
    border: 1px solid var(--nexus-border);
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--background-default-grey);
}

.nexus-controls-table-card .fr-table {
    margin-bottom: 0;
    overflow-x: auto;
    scrollbar-gutter: stable both-edges;
}

.nexus-controls-table-card table {
    min-width: 118rem;
}

.nexus-controls-table-card caption {
    padding-bottom: 1rem;
}

.nexus-controls-table-card th {
    white-space: nowrap;
    background: var(--background-contrast-grey);
}

.nexus-controls-table-card th,
.nexus-controls-table-card td {
    vertical-align: top;
}

.nexus-controls-table-card td {
    word-break: normal;
    overflow-wrap: anywhere;
}

.nexus-table-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 18rem;
    line-height: 1.4;
}

.nexus-controls-table-card td:last-child,
.nexus-controls-table-card th:last-child {
    white-space: nowrap;
}

.nexus-controls-actions {
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.nexus-controls-actions form {
    margin: 0;
    flex: 0 0 auto;
}

.nexus-controls-actions li {
    flex: 0 0 auto;
}

.nexus-controls-actions .fr-btn {
    white-space: nowrap;
}

@media (max-width: 62em) {
    .nexus-controls-toolbar {
        justify-content: flex-start;
    }
}


.nexus-nav-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nexus-global-search {
    padding-bottom: 1rem;
}

.nexus-global-search__form {
    position: relative;
    display: flex;
    align-items: center;
}

.nexus-global-search__field {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 20rem;
    width: 100%;
    border: 1px solid rgba(0, 0, 145, 0.14);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 18, 0.08);
    overflow: hidden;
}

.nexus-global-search__field:focus-within {
    border-color: var(--border-action-high-blue-france);
    box-shadow: 0 0 0 2px rgba(0, 0, 145, 0.18), 0 12px 28px rgba(0, 0, 18, 0.12);
}

.nexus-global-search__field-icon {
    position: absolute;
    left: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    color: var(--text-mention-grey);
    pointer-events: none;
}

.nexus-global-search__field-icon svg {
    width: 1rem;
    height: 1rem;
    display: block;
}

.nexus-global-search__input {
    min-width: 0;
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 0.5rem;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.nexus-global-search__input:focus {
    box-shadow: none;
    outline: none;
}

.nexus-global-search__submit {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    margin: 0.25rem;
    padding: 0;
    border-radius: 999px;
}

.nexus-global-search__submit svg {
    width: 1rem;
    height: 1rem;
    display: block;
}

.nexus-global-search__panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 20;
}

.nexus-global-search__results {
    list-style: none;
    margin: 0;
    padding: 0.35rem;
    border: 1px solid rgba(0, 0, 145, 0.14);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 18, 0.14);
}

.nexus-global-search__item {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 0.8rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.nexus-global-search__item:hover,
.nexus-global-search__item:focus,
.nexus-global-search__item.is-active {
    background: linear-gradient(135deg, rgba(0, 0, 145, 0.05), rgba(0, 0, 145, 0.02));
    box-shadow: inset 0 0 0 1px rgba(0, 0, 145, 0.12);
}

.nexus-global-search__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.nexus-search-kind {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.nexus-search-kind--bti {
    background: rgba(0, 0, 145, 0.08);
    color: var(--text-title-blue-france);
}

.nexus-search-kind--controle {
    background: rgba(24, 117, 42, 0.12);
    color: #18752a;
}

.nexus-search-kind--generic {
    background: var(--background-contrast-grey);
    color: var(--text-default-grey);
}

.nexus-global-search__reference-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.nexus-global-search__reference {
    display: block;
    color: var(--text-title-blue-france);
    font-size: 0.95rem;
}

.nexus-global-search__open {
    color: var(--text-mention-grey);
    font-size: 0.8rem;
    white-space: nowrap;
}

.nexus-global-search__excerpt,
.nexus-search-result__excerpt {
    display: block;
    color: var(--text-default-grey);
    line-height: 1.45;
}

.nexus-search-result__field {
    display: inline-flex;
    align-items: center;
    margin-right: 0.45rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    background: var(--background-alt-grey);
    color: var(--text-mention-grey);
    font-size: 0.78rem;
}

.nexus-global-search__empty {
    padding: 1rem;
    color: var(--text-mention-grey);
}

.nexus-search-result-card {
    border: 1px solid rgba(0, 0, 145, 0.1);
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(0, 0, 18, 0.06);
}

.nexus-search-result-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.nexus-search-result-card__main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
}

.nexus-search-result-card__aside {
    flex: 0 0 auto;
    padding-top: 0.1rem;
}

.nexus-search-result-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-title-blue-france);
    font-weight: 600;
    text-decoration: none;
}

.nexus-search-result-card__link:hover,
.nexus-search-result-card__link:focus {
    text-decoration: underline;
}

.nexus-search-result-card mark,
.nexus-global-search__excerpt mark {
    background: var(--background-open-blue-france);
    color: var(--text-default-grey);
    padding: 0.125rem 0.2rem;
}

.nexus-search-hero {
    background: linear-gradient(180deg, rgba(245, 245, 255, 0.72), #ffffff 65%);
}

.nexus-search-page-form {
    max-width: 48rem;
}

.nexus-search-page-form__field {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 0, 145, 0.14);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 0, 18, 0.06);
    padding: 0.35rem;
}

.nexus-search-page-form__field:focus-within {
    border-color: var(--border-action-high-blue-france);
    box-shadow: 0 0 0 2px rgba(0, 0, 145, 0.16), 0 12px 26px rgba(0, 0, 18, 0.1);
}

.nexus-search-page-form__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mention-grey);
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.nexus-search-page-form__icon svg {
    width: 1rem;
    height: 1rem;
    display: block;
}

.nexus-search-page-form__input {
    border: 0;
    box-shadow: none;
    background: transparent;
}

.nexus-search-page-form__input:focus {
    box-shadow: none;
    outline: none;
}

.nexus-search-page-form__submit {
    white-space: nowrap;
    border-radius: 0.85rem;
}

.nexus-search-summary {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nexus-search-summary__count {
    font-size: 1rem;
}

.nexus-search-summary__query {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(0, 0, 145, 0.06);
    color: var(--text-title-blue-france);
    font-weight: 600;
}
.nexus-reference-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: var(--background-contrast-blue-france);
    color: var(--text-title-blue-france);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.nexus-reference-pill:hover,
.nexus-reference-pill:focus {
    background: var(--background-alt-blue-france);
}


@media (min-width: 62em) {
    .nexus-nav-layout {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .nexus-global-search {
        flex: 0 0 27rem;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 62em) {
    .nexus-global-search__field {
        min-width: 0;
    }

    .nexus-search-result-card__main {
        flex-direction: column;
    }

    .nexus-search-result-card__aside {
        width: 100%;
    }
}

@media (min-width: 62em) {
    .nexus-nav-layout {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .nexus-global-search {
        flex: 0 0 27rem;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 62em) {
    .nexus-global-search__field {
        min-width: 0;
    }
}


.nexus-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--nexus-border);
    background: var(--background-alt-grey);
    color: var(--text-default-grey);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nexus-status-badge::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: currentColor;
    flex: none;
    opacity: 0.92;
}

.nexus-status-badge--draft {
    background: #fff4e5;
    border-color: #ffd59b;
    color: #8f4f00;
}

.nexus-status-badge--progress {
    background: #eef4ff;
    border-color: #bfd6ff;
    color: #0045b8;
}

.nexus-status-badge--review {
    background: #f4f0ff;
    border-color: #d6c7ff;
    color: #5f3dc4;
}

.nexus-status-badge--success {
    background: #e8f8ef;
    border-color: #b8e7ca;
    color: #18753c;
}

.nexus-status-badge--inactive {
    background: #f4f4f4;
    border-color: #d6d6d6;
    color: #666666;
}

.nexus-status-badge--danger {
    background: #fff1f0;
    border-color: #ffb8b0;
    color: #b34000;
}

.nexus-status-badge--caution {
    background: #fff7df;
    border-color: #ffe08a;
    color: #8a5800;
}


.nexus-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.nexus-timeline__step {
    position: relative;
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.nexus-timeline__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.4rem;
    left: 1.1rem;
    width: 2px;
    height: calc(100% - 1rem);
    background: var(--border-default-grey);
}

.nexus-timeline__marker {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--border-default-grey);
    background: var(--background-alt-grey);
    color: var(--text-label-grey);
    z-index: 1;
}

.nexus-timeline__content {
    min-width: 0;
    padding-top: 0.1rem;
}

.nexus-timeline__title,
.nexus-timeline__date,
.nexus-timeline__hint {
    margin: 0;
}

.nexus-timeline__title {
    font-weight: 700;
    color: var(--text-title-grey);
}

.nexus-timeline__date {
    margin-top: 0.2rem;
    font-size: 0.875rem;
    color: var(--text-mention-grey);
}

.nexus-timeline__hint {
    margin-top: 0.35rem;
    font-size: 0.875rem;
    color: var(--text-default-grey);
}

.nexus-timeline__step--done .nexus-timeline__marker {
    background: var(--background-action-high-blue-france);
    border-color: var(--border-action-high-blue-france);
    color: var(--text-inverted-blue-france);
}

.nexus-timeline__step--done:not(:last-child)::after {
    background: var(--border-action-high-blue-france);
}

.nexus-timeline__step--current .nexus-timeline__marker {
    box-shadow: 0 0 0 4px rgba(0, 0, 145, 0.12);
}

.nexus-timeline__step--current .nexus-timeline__title {
    color: var(--text-action-high-blue-france);
}

@media (min-width: 62em) {
    .nexus-timeline {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .nexus-timeline__step {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .nexus-timeline__step:not(:last-child)::after {
        top: 1.1rem;
        left: calc(100% - 0.25rem);
        width: calc(100% - 1.75rem);
        height: 2px;
    }
}


.nexus-record-hero__content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nexus-record-hero__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 0.75rem;
}

.nexus-record-hero__meta-item {
    padding: 0.875rem 1rem;
    border: 1px solid var(--nexus-border);
    background: var(--background-alt-grey);
    border-radius: 0.75rem;
}

.nexus-record-hero__meta-label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-mention-grey);
    font-size: 0.875rem;
}

.nexus-detail-aside-card {
    box-shadow: 0 8px 24px rgba(0, 0, 145, 0.08);
}

.nexus-detail-aside-card__label {
    color: var(--text-mention-grey);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nexus-detail-aside-card__note {
    color: var(--text-mention-grey);
}

.nexus-detail-section {
    box-shadow: 0 6px 20px rgba(0, 0, 145, 0.06);
}

.nexus-detail-section__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.nexus-key-value--cards {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 0.875rem;
}

.nexus-key-value--cards > div {
    padding: 0.9rem 1rem;
    border: 1px solid var(--nexus-border);
    border-radius: 0.75rem;
    background: var(--background-alt-grey);
    min-width: 0;
}

.nexus-key-value--cards dd {
    overflow-wrap: anywhere;
}

.nexus-key-value--cards > .nexus-key-value__item--wide {
    grid-column: span 2;
}

.nexus-free-text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.nexus-free-text-card {
    padding: 1rem 1.1rem;
    border: 1px solid var(--nexus-border);
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #f9fbff 0%, var(--background-alt-grey) 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 145, 0.02);
    min-width: 0;
}

.nexus-free-text-card--wide {
    grid-column: 1 / -1;
}

.nexus-free-text-card__content {
    margin: 0;
    color: var(--text-default-grey);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    line-height: 1.6;
}

.nexus-history-list {
    list-style: none;
    padding: 0;
}

.nexus-history-list__item {
    margin-bottom: 0.9rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--nexus-border);
    border-radius: 0.75rem;
    background: var(--background-alt-grey);
}

@media (max-width: 48em) {
    .nexus-record-hero__meta {
        grid-template-columns: 1fr;
    }

    .nexus-key-value--cards {
        grid-template-columns: 1fr;
    }

    .nexus-free-text-grid {
        grid-template-columns: 1fr;
    }
}

.nexus-feedback {
    position: relative;
    border: 1px solid var(--border-default-grey);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 12px 32px rgba(0, 0, 145, 0.06);
    overflow: hidden;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.nexus-feedback::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.375rem;
    border-radius: 1rem 0 0 1rem;
    background: var(--border-action-high-blue-france);
}

.nexus-feedback .fr-alert__title {
    margin-bottom: 0.35rem;
    font-size: 1rem;
    line-height: 1.4;
}

.nexus-feedback p:not(.fr-alert__title) {
    margin-bottom: 0;
    color: var(--text-default-grey);
}

.nexus-feedback.fr-alert--success {
    background: #f4f8f3;
    border-color: #9bc79a;
}

.nexus-feedback.fr-alert--success::before {
    background: #18753c;
}

.nexus-feedback.fr-alert--error {
    background: #fef4f4;
    border-color: #f0a7a7;
}

.nexus-feedback.fr-alert--error::before {
    background: #ce0500;
}

.nexus-feedback.fr-alert--info {
    background: #f4f6ff;
    border-color: #bfc8fb;
}

.nexus-feedback.fr-alert--info::before {
    background: var(--border-action-high-blue-france);
}

.nexus-feedback.fr-alert--warning {
    background: #fff8f2;
    border-color: #f4c7a3;
}

.nexus-feedback.fr-alert--warning::before {
    background: #b34000;
}

.nexus-feedback[data-nexus-auto-dismiss="true"] {
    will-change: opacity, transform;
}

.nexus-feedback.is-dismissing {
    opacity: 0;
    transform: translateY(-0.25rem);
}


.nexus-empty-state {
    border: 1px solid rgba(0, 0, 145, 0.12);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(245, 245, 255, 0.78), #ffffff 72%);
    box-shadow: 0 14px 28px rgba(0, 0, 18, 0.04);
}

.nexus-empty-state__inner {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.nexus-empty-state__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-title-blue-france);
}

.nexus-empty-state__eyebrow::before {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--background-action-high-blue-france);
    box-shadow: 0 0 0 0.3rem rgba(0, 0, 145, 0.08);
    flex: none;
}

.nexus-empty-state__title {
    margin-bottom: 0.75rem;
}

.nexus-empty-state__text {
    max-width: 44rem;
    margin-bottom: 0;
    color: var(--text-mention-grey);
}

.nexus-empty-state__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.nexus-empty-state__tips {
    margin: 0;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: rgba(246, 246, 246, 0.92);
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.nexus-empty-state__tips li {
    position: relative;
    padding-left: 1rem;
    color: var(--text-mention-grey);
}

.nexus-empty-state__tips li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--background-action-high-blue-france);
}

.nexus-inline-help {
    border: 1px solid rgba(0, 0, 145, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.88);
}

.nexus-inline-help__title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 48em) {
    .nexus-empty-state__inner {
        grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.9fr);
    }
}

@media (max-width: 48em) {
    .nexus-empty-state__tips {
        padding: 0.875rem 1rem;
    }
}

.nexus-action-button,
.nexus-page-heading__actions .fr-btn,
.nexus-controls-toolbar .fr-btn,
.nexus-empty-state__actions .fr-btn,
.nexus-detail-actions .fr-btn,
.nexus-inline-actions .fr-btn,
.nexus-btn-cluster .fr-btn,
.nexus-search-result-card__link,
.nexus-reference-pill {
    border-radius: 0.9rem;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.nexus-action-button:hover,
.nexus-action-button:focus,
.nexus-page-heading__actions .fr-btn:hover,
.nexus-page-heading__actions .fr-btn:focus,
.nexus-controls-toolbar .fr-btn:hover,
.nexus-controls-toolbar .fr-btn:focus,
.nexus-empty-state__actions .fr-btn:hover,
.nexus-empty-state__actions .fr-btn:focus,
.nexus-detail-actions .fr-btn:hover,
.nexus-detail-actions .fr-btn:focus,
.nexus-inline-actions .fr-btn:hover,
.nexus-inline-actions .fr-btn:focus,
.nexus-btn-cluster .fr-btn:hover,
.nexus-btn-cluster .fr-btn:focus,
.nexus-reference-pill:hover,
.nexus-reference-pill:focus,
.nexus-search-result-card__link:hover,
.nexus-search-result-card__link:focus {
    transform: translateY(-1px);
}

.nexus-page-heading__actions,
.nexus-controls-toolbar,
.nexus-btn-cluster,
.nexus-inline-actions,
.nexus-detail-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.nexus-btn-cluster--inline,
.nexus-inline-actions--compact {
    gap: 0.5rem;
}

.nexus-btn-cluster > *,
.nexus-inline-actions > *,
.nexus-detail-actions > * {
    margin: 0;
    flex: 0 0 auto;
}

.nexus-btn-cluster form,
.nexus-inline-actions form,
.nexus-detail-actions form {
    margin: 0;
}

.nexus-page-heading__actions .fr-btn,
.nexus-controls-toolbar .fr-btn,
.nexus-detail-actions .fr-btn,
.nexus-btn-cluster .fr-btn,
.nexus-search-page-form__submit,
.nexus-global-search__submit {
    box-shadow: 0 12px 20px rgba(0, 0, 18, 0.05);
}

.nexus-page-heading__actions .fr-btn--secondary,
.nexus-controls-toolbar .fr-btn--secondary,
.nexus-detail-actions .fr-btn--secondary,
.nexus-btn-cluster .fr-btn--secondary,
.nexus-inline-actions .fr-btn--secondary,
.nexus-search-page-form__submit.fr-btn--secondary,
.nexus-global-search__submit.fr-btn--secondary,
.nexus-detail-actions .fr-btn--tertiary-no-outline,
.nexus-inline-actions .fr-btn--tertiary-no-outline,
.nexus-btn-cluster .fr-btn--tertiary-no-outline {
    box-shadow: none;
}

.nexus-inline-actions .fr-btn,
.nexus-controls-actions .fr-btn,
.nexus-detail-actions .fr-btn {
    white-space: nowrap;
}

.nexus-detail-actions {
    align-items: stretch;
}

.nexus-detail-actions .fr-btn,
.nexus-detail-actions form {
    width: 100%;
}

.nexus-detail-actions form .fr-btn {
    width: 100%;
    justify-content: center;
}

.nexus-search-result-card__link {
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(0, 0, 145, 0.14);
    border-radius: 0.9rem;
    background: rgba(245, 245, 255, 0.8);
}

.nexus-table-scroll-hint__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    color: currentColor;
}

.nexus-table-scroll-hint__icon svg {
    width: 1rem;
    height: 1rem;
    display: block;
}

@media (min-width: 62em) {
    .nexus-detail-actions .fr-btn,
    .nexus-detail-actions form {
        width: auto;
    }

    .nexus-detail-actions .fr-btn,
    .nexus-detail-actions form .fr-btn {
        min-width: 14rem;
    }
}

@media (max-width: 48em) {
    .nexus-page-heading__actions,
    .nexus-controls-toolbar,
    .nexus-btn-cluster,
    .nexus-inline-actions,
    .nexus-detail-actions {
        width: 100%;
    }

    .nexus-page-heading__actions .fr-btn,
    .nexus-controls-toolbar .fr-btn,
    .nexus-btn-cluster .fr-btn,
    .nexus-inline-actions .fr-btn,
    .nexus-detail-actions .fr-btn,
    .nexus-btn-cluster form,
    .nexus-inline-actions form,
    .nexus-detail-actions form {
        width: 100%;
    }

    .nexus-btn-cluster form .fr-btn,
    .nexus-inline-actions form .fr-btn,
    .nexus-detail-actions form .fr-btn {
        width: 100%;
        justify-content: center;
    }
}

.nexus-action-button--compact {
    border-radius: 999px;
}

.nexus-home-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 145, 0.08) 0%, rgba(232, 242, 252, 0.92) 42%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid var(--nexus-border);
    border-radius: 1.5rem;
    box-shadow: 0 14px 34px rgba(0, 0, 145, 0.08);
}

.nexus-home-hero::before,
.nexus-home-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.nexus-home-hero::before {
    width: 18rem;
    height: 18rem;
    top: -8rem;
    right: -4rem;
    background: radial-gradient(circle, rgba(106, 173, 255, 0.35) 0%, rgba(106, 173, 255, 0) 70%);
    animation: nexus-float-glow 9s ease-in-out infinite;
}

.nexus-home-hero::after {
    width: 12rem;
    height: 12rem;
    bottom: -5rem;
    left: -2rem;
    background: radial-gradient(circle, rgba(0, 0, 145, 0.12) 0%, rgba(0, 0, 145, 0) 72%);
    animation: nexus-float-glow 11s ease-in-out infinite reverse;
}

.nexus-home-hero__panel {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.nexus-home-hero__eyebrow,
.nexus-home-section-heading__eyebrow {
    margin: 0;
    color: var(--text-action-high-blue-france);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nexus-home-hero__lead {
    max-width: 32rem;
}

.nexus-home-hero__context {
    color: var(--text-mention-grey);
}

.nexus-home-hero__actions {
    margin-bottom: 0;
}

.nexus-home-kpi-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.nexus-home-kpi-card,
.nexus-home-panel,
.nexus-home-mini-card,
.nexus-home-action-tile {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.nexus-home-kpi-card {
    position: relative;
    overflow: hidden;
    min-height: 11.5rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 0, 145, 0.10);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 10px 22px rgba(0, 0, 145, 0.06);
}

.nexus-home-kpi-card::after {
    content: "";
    position: absolute;
    inset: auto 1.5rem 1rem 1.5rem;
    height: 0.25rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 0, 145, 0.18), rgba(0, 0, 145, 0.04));
}

.nexus-home-kpi-card--primary {
    background: linear-gradient(180deg, rgba(232, 242, 252, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(0, 0, 145, 0.16);
}

.nexus-home-kpi-card--accent {
    background: linear-gradient(180deg, rgba(254, 243, 227, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(187, 99, 0, 0.18);
}

.nexus-home-kpi-card__label {
    margin: 0 0 0.5rem;
    color: var(--text-mention-grey);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
    letter-spacing: -0.01em;
}

.nexus-home-kpi-card__value {
    display: block;
    margin: 0 0 0.5rem;
    color: var(--text-title-grey);
    max-width: 100%;
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-variant-numeric: tabular-nums;
}

.nexus-home-kpi-card__meta {
    margin: 0;
    color: var(--text-default-grey);
    font-size: 0.875rem;
    line-height: 1.45;
    max-width: none;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.nexus-home-section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.nexus-home-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 251, 0.98) 100%);
    border: 1px solid var(--nexus-border);
    border-radius: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 145, 0.05);
    height: 100%;
}

.nexus-home-panel__hint {
    color: var(--text-mention-grey);
}

.nexus-home-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.875rem;
}

.nexus-home-mini-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nexus-home-mini-card {
    background: var(--background-default-grey);
    border: 1px solid rgba(0, 0, 145, 0.1);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 0;
    min-height: 5.5rem;
    padding: 0.875rem;
    text-align: center;
}

.nexus-home-mini-card__value {
    display: block;
    max-width: 100%;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.35rem;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-variant-numeric: tabular-nums;
}

.nexus-home-mini-card__label {
    color: var(--text-mention-grey);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
    letter-spacing: -0.01em;
}

.nexus-home-action-tile {
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 145, 0.1);
    box-shadow: none;
    height: 100%;
}

.nexus-home-focus {
    background: linear-gradient(180deg, rgba(232, 242, 252, 0.7) 0%, rgba(255, 255, 255, 1) 100%);
}

.nexus-home-bullet-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.6rem;
}


.nexus-home-kpi-card,
.nexus-home-panel,
.nexus-home-mini-card,
.nexus-home-action-tile,
.nexus-admin-action-tile,
.nexus-table-card,
.nexus-notification-panel,
.nexus-notification-card {
    min-width: 0;
}

.nexus-home-section-heading > div,
.nexus-home-action-tile .fr-tile__body,
.nexus-admin-action-tile .fr-tile__body,
.nexus-home-action-tile .fr-tile__title,
.nexus-home-action-tile .fr-tile__desc,
.nexus-admin-action-tile__meta,
.nexus-home-panel__hint,
.nexus-notification-card p {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.nexus-home-section-heading h2 {
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

.nexus-animate-on-load {
    opacity: 0;
    transform: translateY(16px);
}

.nexus-animate-on-load.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.nexus-home-kpi-card:hover,
.nexus-home-panel:hover,
.nexus-home-mini-card:hover,
.nexus-home-action-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 145, 0.1);
}

@keyframes nexus-float-glow {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, 0.6rem, 0) scale(1.06);
    }
}

@media (max-width: 78em) {
    .nexus-home-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nexus-home-mini-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 62em) {
    .nexus-home-hero__panel,
    .nexus-home-kpi-grid {
        padding: 1.5rem;
    }
}

@media (max-width: 48em) {
    .nexus-home-kpi-grid,
    .nexus-home-mini-grid,
    .nexus-home-mini-grid--four {
        grid-template-columns: 1fr;
    }

    .nexus-home-hero {
        border-radius: 1rem;
    }

    .nexus-home-kpi-card {
        min-height: auto;
    }

    .nexus-home-section-heading {
        align-items: stretch;
    }
}


.nexus-admin-hero {
    background: linear-gradient(135deg, rgba(0, 0, 145, 0.10) 0%, rgba(235, 245, 255, 0.96) 45%, rgba(255, 255, 255, 0.99) 100%);
}

.nexus-admin-hero::before {
    width: 20rem;
    height: 20rem;
    top: -8rem;
    right: -3rem;
}

.nexus-admin-hero__panel {
    min-height: 100%;
}

.nexus-admin-focus-panel {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 145, 0.10);
    border-radius: 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.nexus-admin-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nexus-admin-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nexus-admin-mini-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nexus-admin-action-tile {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 251, 0.98) 100%);
}

.nexus-admin-action-tile__meta {
    margin: 0 0 0.5rem;
    color: var(--text-action-high-blue-france);
    font-size: 0.875rem;
    font-weight: 700;
}

@media (max-width: 78em) {
    .nexus-admin-kpi-grid,
    .nexus-admin-mini-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 48em) {
    .nexus-admin-mini-grid,
    .nexus-admin-kpi-grid,
    .nexus-admin-mini-grid--four {
        grid-template-columns: 1fr;
    }

    .nexus-admin-focus-panel {
        border-radius: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nexus-home-hero::before,
    .nexus-home-hero::after,
    .nexus-home-kpi-card,
    .nexus-home-panel,
    .nexus-home-mini-card,
    .nexus-home-action-tile,
    .nexus-animate-on-load,
    .nexus-animate-on-load.is-visible {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .nexus-animate-on-load {
        opacity: 1;
    }
}


.nexus-simple-list-table .fr-table {
    overflow-x: visible;
}

.nexus-simple-list-table .fr-table table {
    width: 100%;
    table-layout: auto;
}

.nexus-simple-list-table .fr-table th {
    white-space: nowrap;
}

.nexus-col-statut {
    width: 12rem;
}


.nexus-col-date {
    width: 8.5rem;
}

.nexus-cell-date {
    min-width: 8.5rem;
}

.nexus-table-date {
    display: inline-block;
    white-space: nowrap;
}

.nexus-col-actions {
    width: 1%;
}

.nexus-cell-statut {
    min-width: 10.5rem;
}

.nexus-cell-actions {
    width: 1%;
    white-space: nowrap;
}

.nexus-status-badge--table {
    display: inline-flex;
    max-width: 100%;
    white-space: normal;
    line-height: 1.2;
    align-items: flex-start;
    justify-content: flex-start;
}

.nexus-inline-actions--stackable {
    flex-wrap: wrap;
}

.nexus-inline-actions--stackable .fr-btn {
    white-space: nowrap;
}

.nexus-table-clamp--wide {
    max-width: 24rem;
}

.nexus-table-stack {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.nexus-table-stack__item {
    display: block;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.nexus-table-scroll-shell--static {
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.nexus-controls-table-card .fr-table {
    overflow-x: visible;
}

.nexus-controls-table-card table {
    min-width: 0;
    width: 100%;
    table-layout: auto;
}

@media (max-width: 62em) {
    .nexus-simple-list-table .fr-table,
    .nexus-controls-table-card .fr-table {
        overflow-x: auto;
    }

    .nexus-controls-table-card table {
        min-width: 58rem;
    }
}


.nexus-auto-field {
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: rgba(232, 242, 252, 0.65);
    border: 1px solid rgba(0, 0, 145, 0.12);
}

.nexus-auto-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    background: rgba(0, 0, 145, 0.08);
    color: var(--text-title-grey);
    font-size: 0.75rem;
    font-weight: 700;
    vertical-align: middle;
}

.nexus-auto-field__input {
    background-color: rgba(255,255,255,0.94);
}

.nexus-key-value__span-2 {
    grid-column: 1 / -1;
}

.nexus-mini-timeline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nexus-mini-timeline__step {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    padding: 0 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,145,0.14);
    background: rgba(245, 245, 254, 0.9);
    color: var(--text-mention-grey);
    font-size: 0.78rem;
    font-weight: 700;
}

.nexus-mini-timeline__step--done {
    background: rgba(232, 242, 252, 0.95);
    border-color: rgba(0,0,145,0.22);
    color: var(--text-title-grey);
}

.nexus-mini-timeline__step--current {
    box-shadow: inset 0 0 0 2px rgba(0,0,145,0.18);
}


.nexus-checkbox-group-visible {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
}

.nexus-checkbox-group-visible input[type="checkbox"] {
    position: static;
    opacity: 1;
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    margin: 0.2rem 0 0;
    accent-color: var(--border-action-high-blue-france);
}

.nexus-checkbox-group-visible input[type="checkbox"] + label {
    margin-left: 0;
    padding: 0;
    display: block;
    cursor: pointer;
}

.nexus-checkbox-group-visible input[type="checkbox"] + label::before {
    display: none;
}


.nexus-native-choice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 0.75rem;
}

.nexus-native-choice input[type="checkbox"] {
    -webkit-appearance: checkbox !important;
    appearance: auto !important;
    position: static !important;
    opacity: 1 !important;
    clip: auto !important;
    clip-path: none !important;
    width: 1.125rem !important;
    height: 1.125rem !important;
    min-width: 1.125rem !important;
    margin: 0.2rem 0 0 !important;
    padding: 0 !important;
    accent-color: var(--border-action-high-blue-france);
}

.nexus-native-choice__label {
    display: block;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.nexus-native-choice__label::before,
.nexus-native-choice__label::after {
    display: none !important;
    content: none !important;
}
