/* Option 1: Target any focused element within the widget */
.elfsight-widget-google-maps *:focus,
.elfsight-widget-google-maps *:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important; /* If border color changes on focus */
}

/* Option 2: Target the list item if clicking the side panel causes outline */
.elfsight-widget-google-maps .eapps-google-maps-list-item:focus,
.elfsight-widget-google-maps .eapps-google-maps-list-item:focus-visible,
.elfsight-widget-google-maps .eapps-google-maps-list-item-active { /* Sometimes uses active class */
  outline: none !important;
  box-shadow: none !important;
   border-color: transparent !important;
}

/* Option 3: Target the map marker image or its container */
.elfsight-widget-google-maps .eapps-google-maps-marker:focus,
.elfsight-widget-google-maps .eapps-google-maps-marker:focus-visible,
.elfsight-widget-google-maps img[src*='marker']:focus, /* If focus goes to image */
.elfsight-widget-google-maps img[src*='marker']:focus-visible {
  outline: none !important;
  box-shadow: none !important;
   border-color: transparent !important;
}

/* Option 4: Target elements within the Info Window */
.elfsight-widget-google-maps .gm-style-iw *:focus, /* Any element in info window */
.elfsight-widget-google-maps .gm-style-iw *:focus-visible,
.elfsight-widget-google-maps .eapps-google-maps-marker-info-button:focus, /* Specific button? */
.elfsight-widget-google-maps .eapps-google-maps-marker-info-button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
   border-color: transparent !important;
}

