/**
 * D-One - Sistema di Temi Centralizzato
 * CSS centralizzato per la gestione dei temi chiaro/scuro
 * Utilizzabile per tutte le pagine interne (escludendo homepage)
 */

/* Variabili per il tema chiaro/scuro */
:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-light: rgba(99, 102, 241, 0.1);
    --secondary: #200e51;
    --accent: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;
    
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #d648ec 0%, #f87171 100%);

    /* Tema Chiaro */
    --text-primary: var(--gray-800);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --bg-body: var(--gray-50);
    --bg-card: #ffffff;
    --border-color: var(--gray-200);
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.032);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Tema Scuro */
html[data-theme='dark'] {
    --text-primary: var(--gray-100);
    --text-secondary: var(--gray-300);
    --text-muted: var(--gray-500);
    --bg-body: var(--gray-900);
    --bg-card: var(--gray-800);
    --border-color: var(--gray-700);
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.15);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    
    /* Applicazione del background */
    background-color: var(--bg-body);
}

/* Applicazione del tema al body e contenitori principali */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: var(--bg-body);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

html[data-theme='dark'] body {
    background-color: var(--bg-body);
}

html[data-theme='dark'] .content-section {
    background-color: var(--bg-body);
}

html[data-theme='dark'] .content-container {
    background-color: transparent;
}

html[data-theme='dark'] main {
    background-color: var(--bg-body);
}

/* ========================================
   LAYOUT DI BASE E CONTENITORI PRINCIPALI
   ======================================== */

/* Contenitori principali */
.content-section {
    min-height: 100vh;
    padding: 0;
    position: relative;
}

.content-section.with-header {
    padding-top: 60px; /* Spazio per header fisso - usa design token */
}

/* Responsive: header più basso su mobile */
@media (max-width: 768px) {
    .content-section.with-header {
        padding-top: 60px; /* Header mobile: 60px (da header-responsive.css) */
    }
}

@media (max-width: 480px) {
    .content-section.with-header {
        padding-top: 56px; /* Header small mobile: 56px (da header-responsive.css) */
    }
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Reset per main */
main {
    background-color: var(--bg-body);
    /* min-height: 100vh; */
    position: relative;
}

/* HTML e Body base */
html {
    height: 100%;
    scroll-behavior: smooth;
}

/* RIMOZIONE DUPLICATI - QUESTI STILI SONO GIÀ DEFINITI SOPRA */

/* ========================================
   NAVIGATION BREADCRUMB
   ======================================== */

.nav-breadcrumb {
    background-color: var(--bg-card);
    border-radius: 0 0 12px 12px; /* Solo angoli inferiori arrotondati */
    padding: 1rem 1.5rem;
    margin-bottom: 3rem;
    margin-top: 0; /* Attaccato alla toolbar */
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    border-top: none; /* Rimuove il bordo superiore per effetto attaccato */
    position: relative;
    z-index: 99; /* Sotto la toolbar ma sopra il resto */
}

.nav-breadcrumb .breadcrumb {
    margin-bottom: 0;
    background: none;
    padding: 0;
}

.nav-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.nav-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-hover);
}

.nav-breadcrumb .breadcrumb-item.active {
    color: var(--text-secondary);
}

html[data-theme='dark'] .nav-breadcrumb {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

/* ========================================
   CHAT SERVICES GRID - LAYOUT SPECIFICO
   ======================================== */

.chat-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Assicuriamo che le card chat abbiano lo stile corretto */
.chat-service-card {
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--box-shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.chat-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.chat-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.chat-service-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.chat-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--box-shadow);
}

.chat-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.chat-service-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.chat-service-body {
    padding: 0 2rem 2rem;
    flex-grow: 1;
}

.chat-service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.chat-service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.chat-service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.chat-service-features li i {
    color: var(--success);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.chat-service-footer {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.chat-service-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary-chat {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary-chat:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
    color: white;
    text-decoration: none;
}

.btn-secondary-chat {
    background: var(--bg-body);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary-chat:hover {
    background: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
}

/* Pulsanti disabilitati */
.chat-service-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.chat-service-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ========================================
   STATUS INDICATORS
   ======================================== */

.status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

/* Status indicators - RIMOSSO: duplicato ora gestito nella sezione STATUS INDICATORS */

.status-warning {
    background: var(--warning);
}

.status-info {
    background: var(--info);
}

html[data-theme='dark'] .status-indicator {
    border-color: var(--bg-card);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ========================================
   ANIMAZIONI E TRANSIZIONI
   ======================================== */

/* Animazione di entrata per le card */
.card-enter-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.card-enter-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animazioni hover per i pulsanti */
.chat-service-btn, .service-btn, .agent-btn {
    position: relative;
    overflow: hidden;
}

.chat-service-btn::before, .service-btn::before, .agent-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.chat-service-btn:hover::before, .service-btn:hover::before, .agent-btn:hover::before {
    left: 100%;
}

/* Animazione per i pulsanti disabilitati */
.chat-service-btn:disabled, .service-btn:disabled, .agent-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.chat-service-btn:disabled:hover, .service-btn:disabled:hover, .agent-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ========================================
   PLACEHOLDER CARDS
   ======================================== */

.placeholder-card {
    opacity: 0.6;
    position: relative;
}

.placeholder-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    pointer-events: none;
}

html[data-theme='dark'] .placeholder-card::after {
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
}

/* ========================================
   CLASSI UTILITY PER ICONE SPECIFICHE
   ======================================== */

.anythingllm-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.lm-studio-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%) !important;
}

.openwebui-icon {
    background: var(--gradient-primary) !important;
}

.claude-icon {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%) !important;
}

.chatgpt-icon {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%) !important;
}

.gemini-icon {
    background: linear-gradient(135deg, #4285f4 0%, #0f9d58 100%) !important;
}

/* ========================================
   LOADING STATES
   ======================================== */

.loading-shimmer {
    background: linear-gradient(90deg, 
        var(--bg-card) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        var(--bg-card) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

html[data-theme='dark'] .loading-shimmer {
    background: linear-gradient(90deg, 
        var(--bg-card) 25%, 
        rgba(255, 255, 255, 0.05) 50%, 
        var(--bg-card) 75%
    );
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ========================================
   TOOLTIP SYSTEM
   ======================================== */

[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-900);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--gray-900);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

html[data-theme='dark'] [data-tooltip]::before {
    background: var(--gray-100);
    color: var(--gray-900);
}

html[data-theme='dark'] [data-tooltip]::after {
    border-top-color: var(--gray-100);
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Focus states */
.chat-service-btn:focus, .service-btn:focus, .agent-btn:focus,
.toolbar-theme-toggle:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Riduzione animazioni per preferenze utente */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-element {
        animation: none;
    }
    
    .status-indicator {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .service-card, .chat-service-card, .agent-card {
        border: 2px solid var(--text-primary);
    }
    
    .btn-primary-chat, .btn-primary-service, .btn-primary-agent {
        border: 2px solid var(--text-primary);
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .floating-elements,
    .toolbar-theme-toggle,
    .status-indicator {
        display: none !important;
    }
    
    .service-card, .chat-service-card, .agent-card {
        box-shadow: none !important;
        border: 1px solid #000 !important;
        break-inside: avoid;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* ========================================
   COMPONENTI AGGIUNTIVI
   ======================================== */

/* Badge system */
.badge-new {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gradient-secondary);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    z-index: 10;
}

.badge-beta {
    background: var(--warning);
}

.badge-coming-soon {
    background: var(--info);
}

/* Progress bars */
.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

/* Dividers */
.section-divider {
    height: 1px;
    background: var(--border-color);
    margin: 3rem 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Notification/Toast system */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.notification {
    position: relative;
    padding: 1rem 1.5rem;
    padding-right: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow-lg);
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 300px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.notification-message {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.notification-close:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.notification.success {
    border-left: 4px solid var(--success);
}

.notification.success .notification-icon {
    color: var(--success);
}

.notification.error {
    border-left: 4px solid var(--danger);
}

.notification.error .notification-icon {
    color: var(--danger);
}

.notification.warning {
    border-left: 4px solid var(--warning);
}

.notification.warning .notification-icon {
    color: var(--warning);
}

.notification.info {
    border-left: 4px solid var(--info);
}

.notification.info .notification-icon {
    color: var(--info);
}

/* Notification progress bar */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.3;
    border-radius: 0 0 12px 12px;
    transition: width linear;
}

.notification.success .notification-progress {
    background: var(--success);
}

.notification.error .notification-progress {
    background: var(--danger);
}

.notification.warning .notification-progress {
    background: var(--warning);
}

.notification.info .notification-progress {
    background: var(--info);
}

/* Responsive notifications */
@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification {
        min-width: 0;
    }
}

/* Skeleton loading */
.skeleton {
    background: var(--border-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

html[data-theme='dark'] .skeleton::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* ========================================
   STATISTICS CARDS
   ======================================== */

.stats-card-body {
    text-align: center;
    padding: 2rem;
}

.stats-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stats-number.success {
    color: var(--success);
}

.stats-number.info {
    color: var(--info);
}

.stats-number.warning {
    color: var(--warning);
}

.stats-number.primary {
    color: var(--primary);
}

.stats-label {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 500;
}

/* ========================================
   NOTIFICATION ICONS HELPER
   ======================================== */

.notification-icon-info::before {
    content: '\f05a'; /* fa-info-circle */
}

.notification-icon-success::before {
    content: '\f058'; /* fa-check-circle */
}

.notification-icon-warning::before {
    content: '\f071'; /* fa-exclamation-triangle */ 
}

.notification-icon-error::before {
    content: '\f057'; /* fa-times-circle */
}

.notification-icon-info::before,
.notification-icon-success::before,
.notification-icon-warning::before,
.notification-icon-error::before {
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
}

/* ========================================
   PAGE HEADER - STANDARD COMPONENT
   Componente standard per header delle pagine di secondo livello
   ======================================== */

.page-header {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 2rem;
    margin-top: 10px; /* Ridotto per avvicinare alla toolbar */
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    box-shadow: var(--box-shadow);
    color: var(--text-primary);
}

/* Top border accent (minimal) */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 var(--space-1) 0;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    position: relative;
    z-index: 1;
}

.page-title i {
    color: var(--primary);
    font-size: 1.5rem;
}

.page-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Hover effect opzionale (subtle) */
.page-header:hover {
    box-shadow: var(--box-shadow-lg);
    transition: box-shadow 0.2s ease;
}

/* ========================================
   RESPONSIVE LAYOUT AGGIORNATO
   ======================================== */

@media (max-width: 768px) {
    .content-container {
        padding: 1rem;
    }
    
    .content-section.with-header {
        padding-top: 0px; /* Nessuno spazio anche su mobile - breadcrumb attaccato */
    }
    
    .chat-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .chat-service-header {
        padding: 1.5rem;
    }
    
    .chat-service-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .chat-service-footer {
        padding: 0 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .chat-service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-title i {
        font-size: 1.25rem;
    }
    
    .page-subtitle {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0.5rem;
    }
    
    .content-section.with-header {
        padding-top: 0px; /* Nessuno spazio anche su schermi piccoli */
    }
    
    .page-header {
        padding: var(--space-3) var(--space-4);
        margin-top: var(--space-2);
        margin-bottom: var(--space-3);
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-title i {
        font-size: 1.25rem;
    }
    
    .page-subtitle {
        font-size: var(--font-size-sm);
    }
    
    .nav-breadcrumb {
        padding: 0.75rem 1rem;
        margin-bottom: 2rem;
    }
}

/* ========================================
   FINE CSS CENTRALIZZATO
   ======================================== */
