/* Contact Buttons (mobile only) */
.cb-bar {
  position: fixed;
  bottom: env(safe-area-inset-bottom, 16px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 9999;
}

/* Hide on desktop */
@media (min-width: 768px) {
  .cb-bar {
    display: none;
  }
}

.cb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  max-width: 200px;
  padding: 6px 0;
  border-radius: 16px;
  text-decoration: none;
  color: #ffffff; !important;
font-family: inherit !important;
font-weight: 500;
  transition: all 0.25s ease;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

.cb-emergency {
  background-color: #d32f2f; /* red for emergency */
}

.cb-nonemergency {
  background-color: #388e3c; /* green for non-emergency */
}

.cb-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.cb-icon {
  display: grid;
  place-items: center;
}

.cb-icon svg {
  fill: #ffffff !important; 
}

.cb-label {
  line-height: 1.1;
  text-align: center;
}

/* Responsive tweaks for small phones */
@media (max-width: 480px) {
  .cb-bar {
    gap: 10px;
    padding: 10px;
  }

  .cb-btn {
font-family: inherit !important;
padding: 6px 0;
  color: #ffffff; !important;
  }

  .cb-icon svg {
    width: 22px;
    height: 22px;
  }
}


/* === FORCE WHITE ICONS & TEXT === */
.cb-bar a.cb-btn,
.cb-bar a.cb-btn *,
.cb-bar a.cb-btn svg {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
  font-family: inherit !important;
  font-size: inherit !important;
}
