
    * {
        box-sizing: border-box;
    }



    .orari {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 30px;
    }

    /* =========================
       DESKTOP
    ========================= */

    .orari-table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
        font-size: 14px;
    }

    .orari-table th {
        background: #f47721;
        color: #fff;
        font-weight: bold;
        padding: 14px 8px;
        text-align: center;
        font-size: 17px;
    }

    .orari-table td {
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #bbb;
        padding: 12px 8px;
        text-align: center;
        vertical-align: middle;
        line-height: 1.5;
    }

    .orari-table tr.orari-row td:nth-child(odd) {
        background: #e9e9e9;
    }

    .orari-table tr.orari-row td:nth-child(even) {
        background: #f5f5f5;
    }

    .orari-table .periodo td {
        background: #f5f5f5 !important;
        border-bottom: 1px solid #bbb;
        padding: 11px;
        font-weight: bold;
        font-size: 15px;
    }

    .chiuso {
        color: #333;
    }

    /* =========================
       MOBILE
    ========================= */

    .mobile-orari {
        display: none;
    }

    @media (max-width: 700px) {

        body {
            padding: 12px;
        }

        .orari-table {
            display: none;
        }

        .mobile-orari {
            display: block;
        }

        .periodo-mobile {
            margin-bottom: 18px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
        }

        .periodo-titolo {
            background: #f47721;
            color: #fff;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            padding: 12px;
        }

        .giorno {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            padding: 11px 13px;
            border-bottom: 1px solid #ddd;
            background: #f5f5f5;
        }

        .giorno:nth-child(even) {
            background: #e9e9e9;
        }

        .giorno:last-child {
            border-bottom: 0;
        }

        .giorno-nome {
            font-weight: bold;
            min-width: 90px;
        }

        .giorno-orario {
            text-align: right;
            line-height: 1.5;
        }

        .chiuso {
            font-weight: normal;
        }
    }
