
.mycontainer {
    border: solid 1px black;
    border-radius: 5px 5px;
    background-color: white;
    margin-top: 10px;
    font-size: 14px;
    box-shadow: 5px 5px #2c3e50;
}

.kpi-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

    .kpi-table thead {
        /*background-color: red;*/
        color: #000000;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .kpi-table th {
        padding: 12px;
        text-align: center;
    }

    .kpi-table td {
        padding: 14px;
        text-align: center;
        font-weight: 600;
        font-size: 16px;
    }

    .kpi-table tbody tr {
        background-color: #ffffff;
        border-bottom: 1px solid #e5e7eb;
    }

        .kpi-table tbody tr:hover {
            background-color: #f9fafb;
        }

/* Colori KPI */
.low {
    color: #16a34a;
}

.medium {
    color: #f59e0b;
}

.high {
    color: #f97316;
}

.critical {
    color: #dc2626;
}

.total {
    color: #111827;
}
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.6);
    z-index: 5;
}