/* Only needed if you want a subtle separator under the banner */
/* Top bar container (use your existing styles or these) */
#custom-topbar {
  background-color: #ffffff;           /* or #00447E if you want colored bar */
  border-bottom: 1px solid #CCDAE5;
  padding: 6px 20px;
  text-align: right;
  position: relative;
  z-index: 9999;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0; /* dividers handle spacing */
}

.custom-topbar-link {
  color: #00447E;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  padding: 0 0.25rem;
  transition: color 0.2s ease-in-out;
}

.custom-topbar-link:hover { text-decoration: underline; }

/* Phone can be slightly bolder for emphasis if you like */
.custom-topbar-phone { font-weight: 600; }

.custom-topbar-divider {
  color: #00447E;
  opacity: 0.6;
  margin: 0 8px;
}

/* Responsive: stack on very small screens */
@media (max-width: 480px) {
  #custom-topbar { flex-wrap: wrap; justify-content: center; gap: 6px; }
  .custom-topbar-divider { display: none; }
}
