/* PCN Group — Customer Portal */

/* Brand accent colour */
:root {
    --pcn-primary: #0d6efd;
}

/* Full-height layout for footer pinning */
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.footer {
    margin-top: auto;
}

/* Auth card (login / register) */
.portal-auth-card {
    max-width: 440px;
    margin: 3rem auto;
}

/* Stat cards on dashboard */
.stat-card {
    border-left: 4px solid var(--pcn-primary);
}

/* Invoice / quote status badges */
.badge-pagata    { background-color: #198754; }
.badge-aperta    { background-color: #0d6efd; }
.badge-sollecita { background-color: #dc3545; }
.badge-attesa    { background-color: #ffc107; color: #212529; }
.badge-accettato { background-color: #198754; }
.badge-rifiutato { background-color: #dc3545; }

/* Tight table */
.table-portal th,
.table-portal td {
    vertical-align: middle;
    white-space: nowrap;
}

/* Responsive table wrapper */
.table-responsive-portal {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
