        body {
            font-family: 'Arial', sans-serif;
            background-color: #fff;
            color: #333;
            padding: 0;
            margin: 33px;
        }
        form {
            background-color: #fff;
            padding: 22px;
            border-radius: 5px;
            display: flex;
            flex-wrap: wrap;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            margin: 22px 0;
        }
        .form-row {
            justify-content: space-between;
            margin: 10px;
            width: 75px;
        }
        label {
            margin: 11px 0;
        }
        #form_filter > input, #insert_answer > input {width: 100%; margin: 0 0 11px 0}
        #form_filter > input:last-of-type, #insert_answer > input:last-of-type {margin: 0 0 22px 0}
        #form_filter > select, #insert_answer > select {margin: 0 22px}
        #form_filter > input[type="checkbox"], #insert_answer > input[type="checkbox"] {width: 50px; margin: 5.5px 22px 5.5px 11px}
        input[type="text"], input[type="password"] {
            width: 90%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        button {
            background-color: #333;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        button:hover {
            background-color: #666;
        }
        .service-options {
            background-color: #333;
            color: white;
            padding: 22px;
            margin: 33px auto;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            text-align: center;
            width: 50%;
        }
        .service-options > a {
            color: #fff;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            margin: 22px 0;
            width: 1000px;
        }
        table.main_data {word-wrap: break-word; word-break: break-all; width: 100%}
        table, th, td {
            border: 1px solid black;
        }
        th, td {
            padding: 8px;
            text-align: left;
        }
        .pagination {
            margin-top: 20px;
            text-align: center;
        }
        .pagination a {
            margin: 0 5px;
            text-decoration: none;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            bottom: 0;
            width: 100%;
        }
        ..ui-widget-content{background-color: #f6f8f4 !important}
        .g-recaptcha {
            margin: 15px 0;
        }
        #dataTable {
            display: none;
        }
.ui-autocomplete {
    position: absolute;
    z-index: 1050;
    overflow-y: auto;  /* previene il ridimensionamento della pagina */
    overflow-x: hidden;  /* previene il ridimensionamento della pagina */
    border: 1px solid #aaa;
    background-color: #ffffff;
    width: 600px;  /* può essere modificato a seconda delle esigenze */
    cursor: pointer;
}

.ui-menu-item-wrapper {
    padding: 5px;
    transition: background-color .3s ease;
}

.ui-menu-item-wrapper:hover {
    background-color: #eeeeee;  /* colore quando l'elemento è passato col mouse */
}
