/* Stile di base per il corpo della pagina */
body {
    background-color: #000; /* Sfondo nero */
    color: white; /* Testo bianco */
    font-family: Arial, sans-serif; /* Font di base */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}


/* Stile per il titolo (Ricerca Utenti) */
h1 {
    font-size: 5em;
    font-weight: bold;
    background: linear-gradient(to right, rgb(42, 148, 153), rgb(128, 0, 0)); /* Gradiente da rosso a viola */
    -webkit-background-clip: text; /* Applicato solo al testo */
    background-clip: text; /* Applicato solo al testo */
    color: transparent; /* Rende il testo trasparente per vedere il gradiente */
    margin-bottom: 0.5em;
}

/* Stile per il sottotitolo */
h6 {
    color: rgb(255, 0, 0);
    font-size: 1.2em;
}

/* Stile per i campi di input */
input[type="number"],
input[type="text"],
textarea,
input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 1em;
    margin: 10px 0;
}

/* Stile per il bottone di ricerca */
button {
    background-color:  rgb(42, 148, 153);
    color: white;
    padding: 12px 20px;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

/* Hover per il bottone: quando il mouse è sopra */
button:hover {
    background-color: red; /* Cambia colore in rosso quando il mouse è sopra */
}

/* Stile per il link HOME */
a {
    color:  rgb(42, 148, 153);
    text-decoration: none;
    font-size: 1.1em;
    margin-top: 20px;
    display: inline-block;
}

/* Hover per il link HOME */
a:hover {
    color: red;
}

/* Stile per l'output dei risultati */
#ZonaOutput {
    margin-top: 20px;
    text-align: center;
    color: white;
}

/* Stile per la tabella dei risultati */
table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    color: white;
}

th, td {
    padding: 10px;
    border: 1px solid #444;
    text-align: left;
}

th {
    background-color: #444;
}

td {
    background-color: #222;
}

/* Stile per le immagini nelle tabelle */
img {
    width: 100px;
    height: auto;
}