.topbar {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 35, 59, .14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 35, 59, .06);
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eef3f8;
  color: #17233b !important;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.topbar a:hover {
  background: #dce9f7;
}

.topbar-title {
  margin-left: auto;
  color: #566171;
  font-size: 15px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar a,
  .topbar-title {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
