/* =============================================
   ICÔNE ADMIN — HEADER SITE PUBLIC
   Fichier isolé : n'affecte jamais css/style.css
============================================= */

.btn-admin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e3e6f5;
  color: #1428A0;
  background: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  transition: all .25s;
}

.btn-admin-icon svg {
  width: 19px;
  height: 19px;
}

.btn-admin-icon:hover {
  background: #1428A0;
  border-color: #1428A0;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 40, 160, .3);
}

/* Sur mobile, garder l'icône visible même quand le bouton WhatsApp
   et le menu texte se replient (voir style.css @media 900px) */
@media (max-width: 900px) {
  .btn-admin-icon {
    width: 36px;
    height: 36px;
    margin-left: auto;
    margin-right: 8px;
  }
  .btn-admin-icon svg { width: 17px; height: 17px; }
}
