
        .scroll-table {
            overflow-y: auto;
            height: 500px;
        }
        table {
            border-collapse: collapse;
            width: 100%;
        }
        th, td {
            text-align: left;
            padding: 8px;
            border: 1px solid #ddd;
        }
        th {
            background-color: #f2f2f2;
        }
        tr:hover {
            background-color: #f5f5f5;
        }
        .prenotata {
            background-color: #d4edda;
            position: relative;
        }
        .btn-cancella {
            position: absolute;
            top: 5px;
            right: 5px;
            background-color: #ff4d4d;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
            font-size: 10px;
        }
        .btn-cancella:hover {
            background-color: #cc0000;
        }
        thead {
            position: sticky;
            top: 0;
            z-index: 1;
        }
        .btn-modifica {
            background-color: #4CAF50;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
            font-size: 10px;
        }
        .btn-modifica:hover {
            background-color: #45a049;
        }
        .oggi {
            border: 2px solid #007bff; /* Evidenziazione per oggi */
        }
 