
/* Topbar container style */
.topbar {
  background-color: #c8161d;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}

/* Flex container for the links, aligned right */
.topbar-links {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  align-items: center;
}

/* Style for each link */
.topbar-links a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
}

.topbar-links a:hover {
  color: #fff !important;
}

/* Hide email link under 600px */
@media (max-width: 600px) {
  .topbar-links a.email-link {
    display: none;
  }
}
