/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #fff;
    color: #222;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
    transition: transform 0.2s ease-in-out;
}

nav li:hover {
    transform: scale(1.1);
}

nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #007bff;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

section:hover {
    transform: translateY(-5px);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
/* styles.css */
/* ... (stili esistenti) */

.login-button {
    margin-left: auto;
    margin-top: 3px;
    display: flex;
    align-items: center;
}

.login-button a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    background-color: #2E8B57;
    border-radius: 3px;
    transition: background-color 0.3s ease-in-out;
}

.login-button a:hover {
    background-color: #7FFF00;
}
/* Stili per il bottone di download */
#download-button {
    margin-top: 10px;
    margin-right: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    float: right; /* Allinea a destra */
}

/* Posizionamento in alto a destra */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f0f0f0;
}
/* Stili per il bottone di download */
#download-button {
    /* ... */
    transition: background-color 0.3s, color 0.3s;
}

#download-button:hover {
    background-color: #218838;
}
