/**
 * Albo Pretorio - Stile principale
 * Font istituzionale: Titillium Web (AGID)
 * Dimensione base: 16px
 * Fix: campi "dal/al" sulla stessa riga senza overflow
 */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,400;0,600;0,700;1,400&display=swap');
/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Titillium Web', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.5;
    min-height: 100vh;
}

a {
    color: #4a90a4;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ========== HEADER ========== */
.header {
    background: #2a6a95;
    padding: 0;
    position: relative;
}

.header-top {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #2a6a95;
}

.logo-container {
    display: flex;
    align-items: center;
}
.logo-container img {
    max-height: 80px;
    width: auto;
}

.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.1);
}

.site-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
}

.archive-link {
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}
.archive-link:hover {
    color: #e0f0f5;
}
.archive-link svg {
    width: 16px;
    height: 16px;
}

/* ========== LAYOUT PRINCIPALE ========== */
.main-container {
    display: flex;
    min-height: calc(100vh - 150px);
}

/* Sidebar - ottimizzata */
.sidebar {
    width: 380px;
    min-width: 280px;
    background: #ffffff;
    border-right: 1px solid #ddd;
    padding: 0;
}
@media (max-width: 992px) {
    .sidebar {
        width: 100%;
        min-width: 100%;
    }
}

.sidebar-section {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px;
}
.sidebar-section:last-child {
    border-bottom: none;
}

.atti-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}
.atti-count a {
    color: #4a90a4;
    font-weight: 500;
}

.count-badge {
    background: #5ba3b5;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}
.section-title svg {
    width: 18px;
    height: 18px;
    fill: #4a90a4;
}

/* Filtri tipologia */
.tipologia-list {
    list-style: none;
}
.tipologia-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    padding-left: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.tipologia-item:last-child {
    border-bottom: none;
}
.tipologia-item a {
    color: #4a90a4;
    font-size: 0.9rem;
}
.tipologia-item a:hover {
    color: #3d7a8c;
}
.tipologia-badge {
    background: #5ba3b5;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Form ricerca - fix righe */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}
.form-group input,
.form-group select {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    background: white;
    width: 100%;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90a4;
    box-shadow: 0 0 0 2px rgba(74, 144, 164, 0.1);
}
.form-row {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;   /* impedisce l'andata a capo */
}
.form-row .form-group {
    flex: 1;
    min-width: 0;        /* permette riduzione */
}
.date-input-wrapper {
    position: relative;
}
.date-input-wrapper input {
    width: 100%;
    padding-right: 35px;
}
.date-input-wrapper .calendar-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #5ba3b5;
    color: white;
    padding: 4px 6px;
    border-radius: 3px;
    cursor: pointer;
}
.form-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* Pulsanti */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.btn-primary {
    background: #5ba3b5;
    color: white;
}
.btn-primary:hover {
    background: #4a90a4;
}
.btn-secondary {
    background: #6c757d;
    color: white;
}
.btn-secondary:hover {
    background: #5a6268;
}

/* Content area */
.content {
    flex: 1;
    padding: 20px;
    background: #f5f5f5;
}

/* Paginazione */
.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}
.pagination {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}
.pagination a,
.pagination span {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: white;
    color: #4a90a4;
    font-size: 0.9rem;
    text-decoration: none;
}
.pagination a:hover {
    background: #e9ecef;
    text-decoration: none;
}
.pagination .active {
    background: #5ba3b5;
    color: white;
    border-color: #5ba3b5;
}
.pagination .disabled {
    color: #999;
    cursor: not-allowed;
}
.page-info {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.page-info select {
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Atti list */
.atti-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.atto-card {
    background: #ffffff;
    border: 2px solid #b8d4dd;
    border-radius: 6px;
    padding: 15px;
    position: relative;
}
.atto-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 15px;
    flex-wrap: wrap;
}
.atto-title {
    flex: 1;
	color: #3d7a8c;
	font-weight: 600;
}
.atto-title a {
    color: #4a90a4;
    font-weight: 600;
    font-size: 1.2rem;
}
.atto-title a:hover {
    color: #3d7a8c;
}
.atto-status-docs {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 150px;
}
.atto-oggetto {
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 1rem;
}
.atto-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 8px;
    font-size: 0.95rem;
}
.atto-detail {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.atto-detail-label {
    color: #000;
	font-weight: 600;
}
.atto-detail-value {
    font-weight: 400;
    color: #333;
}

/* Documenti e allegati */
.documento-section {
    text-align: right;
}
.documento-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
}
.documento-link {
    display: block;
    color: #4a90a4;
    font-size: 0.85rem;
    margin-bottom: 3px;
    word-break: break-word;
}
.documento-tipo {
    font-size: 0.75rem;
    color: #666;
}
.btn-allegati {
    background: #5ba3b5;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    margin-top: 5px;
}
.btn-allegati:hover {
    background: #4a90a4;
}
.pdf-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

/* Dropdown allegati */
.allegati-dropdown {
    position: relative;
    display: inline-block;
}
.allegati-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 250px;
    z-index: 100;
}
.allegati-dropdown.open .allegati-menu {
    display: block;
}
.allegati-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}
.allegati-menu a:last-child {
    border-bottom: none;
}
.allegati-menu a:hover {
    background: #f5f5f5;
    text-decoration: none;
}

/* Footer frontend */
.footer {
    background: #2a6a95;
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.9rem;
}
.footer-links {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 15px;
    align-items: center;
}
.footer-links a {
    color: #aad4e8;
    text-decoration: none;
}
.footer-links a:hover,
.footer-links a:focus {
    text-decoration: underline;
    color: #fff;
}
.footer-links span[aria-hidden] {
    color: #ffffff;
}
.footer-copy {
    color: #ddd;
    font-size: 1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .main-container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    .atto-header {
    flex-wrap: wrap;
    justify-content: space-between;
	}
	.atto-status-docs {
    align-items: flex-end;
    text-align: right;
    width: auto;
	}
	.documento-section {
    text-align: right;
	}
}
@media (max-width: 576px) {
    .header-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .pagination-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-row {
        flex-wrap: wrap;
    }
    .atto-details {
        grid-template-columns: 1fr;
    }
}

/* ========== ADMIN STYLE ========== */
.admin-header {
    background: #2a6a95;
    padding: 0;
}

/* Admin header - stesso stile del frontend */
.admin-header .header-top {
    background: #2a6a95;
}

.admin-header .header-bottom {
    background: rgba(0, 0, 0, 0.1);
}

.admin-nav {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}
.admin-nav a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}
.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}
.admin-content {
    padding: 30px;
    background: #f5f5f5;
    min-height: calc(100vh - 120px);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow-x: auto;
    display: block;
}
@media (min-width: 768px) {
    .admin-table {
        display: table;
    }
}
.admin-table th {
    background: #e8f4f8;
    color: #333;
    font-weight: 600;
	text-align: left;
    padding: 12px 15px;
    border-bottom: 1px solid #b8d4dd;
}
.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}
.admin-table tr:hover {
    background: #f9f9f9;
}

/* Badge stato */
.badge-pubblicato {
    background: #1a7a3c;
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}
.badge-stato {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}
.badge-pubblicato { background: #28a745; }
.badge-scaduto { background: #6c757d; }
.badge-annullato { background: #dc3545; }

/* Form admin */
.admin-form {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.admin-form h3 {
    margin-top: 0;
    color: #4a90a4;
}
.admin-form .form-group {
    margin-bottom: 15px;
}
.admin-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
}
.admin-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========== OMISSIS / PRIVACY GDPR ========== */

/* Riga label Oggetto + checkbox Privacy GDPR */
.oggetto-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 4px;
    width: 100%;
    box-sizing: border-box;
}
.oggetto-label-row > label,
.oggetto-label-row > span {
    margin: 0;
    white-space: nowrap;
}
.omissis-check-label {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    font-weight: normal !important;
    white-space: nowrap;
    flex: 0 0 auto;
    min-width: max-content;
    cursor: pointer;
    margin: 0 !important;
    box-sizing: border-box;
}
.omissis-check-label input[type="checkbox"] {
    width: auto;
    min-width: unset;
    flex-shrink: 0;
}

/* Toolbar oscuramento testo */
.obscure-toolbar {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.obscure-toolbar .btn-sm {
    white-space: nowrap;
}
.btn-sm {
    padding: 4px 10px;
    font-size: 12px;
}
.alert-warning-obscure {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 8px 12px;
    font-size: 12px;
    margin-top: 8px;
    border-radius: 4px;
}
.info-text {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.admin-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Dashboard cards */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.dashboard-card {
    background: #ffffff;
    border: 1px solid #b8d4dd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.dashboard-card h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.dashboard-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a90a4;
}

/* Azioni rapide admin */
.quick-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.quick-actions .btn {
    padding: 12px 24px;
}

/* Alert */
.alert {
    padding: 12px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading spinner */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #5ba3b5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Riduci larghezza campo anno */
input[name="anno"] {
    width: 100px;
}

/* ========== ACCESSIBILITÀ WCAG 2.1 ========== */
.skip-link {
    position: absolute;
    top: -60px;
    left: 0;
    background: #005f9e;
    color: white;
    padding: 10px 16px;
    z-index: 9999;
    font-size: 0.95rem;
    border-radius: 0 0 4px 0;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid #ffdd00;
    outline-offset: 2px;
}

/* Focus visibile */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid #005f9e;
    outline-offset: 2px;
}

/* Classe per screen reader */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Nota legale */
.nota-legale {
    font-size: 0.78rem;
    color: #999;
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-style: italic;
}

/* Badge visibilità pubblicazione */
.badge-visibilita {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}
.badge-visibilita.in-attesa {
    background: #ffc107;
    color: #333;
}
.badge-visibilita.attivo {
    background: #28a745;
    color: white;
}
.badge-visibilita.scaduto {
    background: #6c757d;
    color: white;
}

.badge-visibilita.archivio {
    background: #17a2b8;
    color: white;
}

/* ===== SIDEBAR COLLASSABILE CON HAMBURGER ===== */
:root {
    --sidebar-width: 380px;
    --sidebar-collapsed-width: 70px;
    --sidebar-transition: all 0.3s ease;
}

/* Override della sidebar esistente */
.sidebar {
    width: var(--sidebar-width);
    transition: var(--sidebar-transition);
    position: relative;
    flex-shrink: 0;
    overflow-x: hidden;
    z-index: 100;
}

/* Sidebar collassata */
.sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
}

/* Contenuto principale */
.content {
    flex: 1;
    padding: 20px;
    transition: var(--sidebar-transition);
    overflow-x: auto;
}

/* Pulsante hamburger */
.sidebar-toggle {
    position: fixed;
    left: var(--sidebar-width);
    top: 100px;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: #2a6a95;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sidebar-transition);
    z-index: 101;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 1.2rem;
}

.sidebar-toggle:hover {
    background: #1e4a6b;
    transform: translateX(-50%) scale(1.05);
    text-decoration: none;
}

.sidebar.collapsed + .sidebar-toggle {
    left: var(--sidebar-collapsed-width);
    transform: translateX(-50%) rotate(180deg);
}

/* Sidebar collassata - nasconde testi e spacers */
.sidebar.collapsed .sidebar-section .section-title span,
.sidebar.collapsed .tipologia-item a span,
.sidebar.collapsed .sidebar-section > a > div:last-child,
.sidebar.collapsed .user-info-text {
    display: none;
}

.sidebar.collapsed .section-title svg {
    margin-right: 0;
}

.sidebar.collapsed .tipologia-item a {
    justify-content: center;
    padding: 10px 0;
}

.sidebar.collapsed .tipologia-item a svg {
    margin-right: 0;
}

.sidebar.collapsed .sidebar-section > a {
    justify-content: center;
}

.sidebar.collapsed .user-avatar {
    margin: 0 auto;
}

/* Badge operatore in sidebar collassata */
.sidebar.collapsed .badge-operator {
    display: none;
}

/* Overlay per mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}

.sidebar-overlay.active {
    display: block;
}
/* ===================================================
   ACCESSIBILITÀ - Screen reader only
   Nasconde visivamente il testo ma lo mantiene
   accessibile agli screen reader (WCAG 2.1 AA)
=================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visibile per navigazione da tastiera */
:focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 2px;
}

/* Evita che i link disabilitati ricevano focus */
a.disabled,
a[aria-disabled="true"] {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}

/* ===================================================
   RESPONSIVE TABELLE ADMIN — sotto 1600px
   Le colonne diventano righe etichettate
=================================================== */
@media (max-width: 992px) {

    /* Wrapper scrollabile rimosso: ora stack */
    .table-responsive {
        overflow-x: unset;
    }

    .admin-table {
        display: block;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    /* Nasconde l'intestazione: le label vengono dai data-label */
    .admin-table thead {
        display: none;
    }

    .admin-table tbody {
        display: block;
    }

    /* Ogni riga diventa una card */
    .admin-table tbody tr {
        display: block;
        background: white;
        border: 1px solid #b8d4dd;
        border-radius: 8px;
        margin-bottom: 16px;
        padding: 8px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    }

    .admin-table tbody tr:hover {
        background: #f5fafc;
    }

    /* Ogni cella diventa una riga label: valore */
    .admin-table td {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 9px 16px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.9rem;
    }

    .admin-table td:last-child {
        border-bottom: none;
    }

    /* Label dal data-label — larghezza fissa a sinistra */
    .admin-table td::before {
        content: attr(data-label);
        flex: 0 0 150px;
        font-weight: 700;
        color: #4a90a4;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        padding-top: 2px;
    }

    /* Celle senza data-label (colspan ecc.) */
    .admin-table td:not([data-label]) {
        justify-content: center;
        font-style: italic;
        color: #888;
    }

    /* Cella Utente: il flex interno non si rompe */
    .admin-table td[data-label="Utente"] {
        align-items: center;
    }

    /* Cella Azioni: bottoni su riga singola */
    .admin-table td[data-label="Azioni"] {
        flex-wrap: wrap;
        gap: 6px;
    }

    .admin-table td[data-label="Azioni"]::before {
        flex: 0 0 100%;
        margin-bottom: 4px;
    }

    /* Oggetto: testo lungo su più righe */
    .admin-table td[data-label="Oggetto"] {
        flex-direction: column;
        gap: 4px;
    }

    .admin-table td[data-label="Oggetto"]::before {
        flex: none;
    }
}
