body { 
    font-family: Arial, sans-serif; 
    padding: 20px; 
    background-color: #f0f4f8; 
    text-align: center; 
}

button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 24px;
    font-size: 16px;
    margin-bottom: 30px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

button:hover { 
    background-color: #0056b3;
    cursor: pointer;
}

#listaFilm {
    max-width: 1075px; 
    margin: 0 auto;    
    display: grid;
    grid-template-columns: repeat(auto-fit, 250px); 
    gap: 25px;
    justify-content: center; 
}

/* --- IL SINGOLO BOX DEL FILM --- */
.film { 
    background-color: white;
    border-radius: 10px; 
    padding: 15px; 
    box-sizing: border-box; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    display: flex;
    flex-direction: column; 
    text-align: left;
}

.film img {
    width: 100%; 
    border-radius: 5px; 
    margin-bottom: 15px;
}

.film h3 { margin: 0 0 10px 0; font-size: 18px; color: #333; }
.film p { margin: 5px 0; font-size: 14px; color: #666; }

.link-documentazione {
    display: inline-block;
    margin-bottom: 25px;
    color: #007BFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.link-documentazione:hover { 
    text-decoration: underline;
    color: #0056b3;
}