/* WhatsApp Contact Bar styles */
.wacb-bar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--wacb-h, 56px);
  background: var(--wacb-bg, #25D366);
  color: var(--wacb-fg, #ffffff);
  z-index: var(--wacb-z, 99999);
  display: flex;
  align-items: stretch;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol", sans-serif;
}
.wacb-link{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: inherit !important;
  font-weight: 600;
  gap: 10px;
  line-height: 1;
}
.wacb-icon{ display: inline-flex; }
.wacb-link:focus{ outline: 3px solid rgba(255,255,255,.6); outline-offset: -3px; }
@media (min-width: 768px){
  .wacb-bar{ height: calc(var(--wacb-h, 56px) + 2px); }
}
body{ padding-bottom: var(--wacb-h,56px); }
@supports (env(safe-area-inset-bottom: 0)){
  .wacb-bar{ padding-bottom: env(safe-area-inset-bottom); }
}
