@charset "UTF-8";


.custom-button {
    display: inline-block;
	border: 2px solid #fff;
    padding: 10px 20px;
    margin: 5px;
    color: #ffffff; /* Couleur du texte */
    text-align: center;
    font-size: 16px; /* Taille de la police */
    text-decoration: none; /* Enlève le soulignement */
    border-radius: 30px; /* Bords arrondis */
    transition: background-color 0.3s, color 0.3s; /* Transition douce pour le survol */
}

.custom-button:hover {
    color: #f4d55f !important; /* Couleur du texte au survol */
	border: 2px solid #f4d55f !important;

}
