/**
 * Fix for WordPress Admin Bar in Child Theme
 *
 * This CSS fixes the admin bar by ensuring it has proper z-index and opacity settings
 */

/* Fix for WordPress Admin Bar */
#wpadminbar {
  opacity: 1 !important;
  z-index: 99999 !important;
  position: fixed !important;
}

#wpadminbar * {
  pointer-events: auto !important;
}

/* Fix potential overlay issues that might block admin bar links */
body {
  position: relative;
}

body::before {
  content: "";
  display: none;
}

.navbar {
  z-index: 9999 !important; /* Keep navbar below admin bar */
}

/* Ensures space is reserved for admin bar */
html {
  margin-top: 32px !important;
}

@media screen and (max-width: 782px) {
  html {
    margin-top: 46px !important;
  }
}
