/*
Theme Name: Senatory Child
Theme URI: https://themeim.com/wp/senatory/
Author: Themeim
Author URI:  https://themeforest.net/user/themeim
Description: This is a child theme of Senatory
Version: 1.0.0
Template: senatory
Text Domain:  senatory-child
*/
.boxed-btn.btn-sanatory {
    box-shadow: none !important;
    -webkit-box-shadow: none !important; /* Pour la compatibilité navigateurs */
    -moz-box-shadow: none !important;
}

/* Désactive l'ombre et la bordure au survol */
.single-testimonial-item:hover {
    box-shadow: none !important;
    border: none !important;
    transform: none !important; /* Optionnel : si le bouton bouge légèrement au survol */
}

/* Parfois, une bordure est remplacée par une couleur de fond ou un outline */
.single-testimonial-item:hover {
    outline: none !important;
    border-color: transparent !important;
}
div.single-testimonial-item.wow.animate__animated:hover {
    box-shadow: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
}

/* Pour Chrome, Edge et Safari */
::-webkit-scrollbar {
  width: 12px; /* Largeur de la barre */
}

::-webkit-scrollbar-track {
  background: #0736B4; /* Couleur du fond de la barre */
}

::-webkit-scrollbar-thumb {
  background: #0736B4; /* Remplacez par votre couleur (ex: bleu) */
  border-radius: 6px;  /* Arrondi de la barre */
}

::-webkit-scrollbar-thumb:hover {
  background: #0736B4; /* Couleur au survol */
}

/* Pour Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #0736B4 #0736B4;
}