Pulsanti

***

.button-container { display: flex; gap: 15px; /* Spazio tra i pulsanti */ flex-wrap: wrap; /* Li mette uno sotto l’altro su schermi piccoli */ justify-content: center; /* Centra i pulsanti */ margin: 20px 0; } .custom-btn { display: inline-block; padding: 12px 24px; background-color: #0073aa; /* Colore blu WordPress */ color: #ffffff !important; text-decoration: none !important; border-radius: 5px; font-weight: bold; transition: background-color 0.3s ease; } .custom-btn:hover { background-color: #005177; /* Colore più scuro al passaggio del mouse */ }