body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 20px;
}

/* INTESTAZIONE */
.intestazione {
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
    padding: 20px;
}

.intestazione h1 {
    margin-bottom: 5px;
    color: #b45f06;
    font-size: 12px;
font-weight: normal;
    letter-spacing: 1px;
}

.intestazione h2 {
    margin-top: 0;
    font-weight: normal;
    color: #444;
    font-size: 14px;
    line-height: 1.4;
    font-style: italic;
}

.linea {
    width: 200px;
    height: 1px;
    background: #003366;
    margin: 10px auto 20px auto;
}

/* FORM */
form {
    background: white;
    padding: 20px;
    max-width: 600px;
    margin: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

label {
    font-weight: normal;
font-size: 14px;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background: #003366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #0055aa;
}

/* TABELLA */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
}

th {
    background: #003366;
    color: white;
}

/* PAGINAZIONE */
.paginazione {
    text-align: center;
    margin-top: 20px;
}

.paginazione a {
    margin: 0 5px;
    text-decoration: none;
    color: #003366;
}

.paginazione strong {
    margin: 0 5px;
    color: #000;
}

/* FOOTER */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #555;
}
