/* styles.css — personalizzazioni Sceriffa (caricato PER ULTIMO, sovrascrive il tema).
   Regola php-starter: nessun CSS inline nelle pagine; mettilo qui o in assets/css/<pagina>.css */

:root {
    --sceriffa-primary: #f73a0b;
}

/* Brand */
.nav-header .brand-logo .logo-abbr {
    width: 36px; height: 36px; line-height: 36px; text-align: center;
    background: var(--sceriffa-primary); color: #fff; border-radius: 8px; display: inline-block;
}

/* Badge stato pratica (colore impostato inline-safe via data-color gestito in main.js) */
.badge-stato { color: #fff; font-weight: 600; }

/* Card statistiche dashboard */
.stat-card .stat-value { font-size: 1.75rem; font-weight: 700; line-height: 1; }
.stat-card .stat-label { color: #7e7e7e; font-size: .85rem; }

/* Tabelle compatte di dominio */
.table-domain td, .table-domain th { vertical-align: middle; }

/* Dropzone bolletta */
.bolletta-drop {
    border: 2px dashed #d1d1d1; border-radius: 12px; padding: 2.5rem 1rem;
    text-align: center; cursor: pointer; transition: border-color .15s ease;
}
.bolletta-drop:hover, .bolletta-drop.dragover { border-color: var(--sceriffa-primary); }
