Translate »
.side-by-side-buttons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; } .custom-btn { display: inline-block; padding: 10px 20px; background-color: #0073e6; color: #ffffff; text-decoration: none; border-radius: 5px; transition: background-color 0.3s ease; } .custom-btn:hover { background-color: #005bb5; } /* Stack buttons on mobile */ @media (max-width: 600px) { .side-by-side-buttons { flex-direction: column; align-items: center; } .custom-btn { width: 80%; text-align: center; } }