

:root {
  --header-bar-height: 80px !important;   
}

.header-main-bar {
  background: #00a3af;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16), 0 1.5px 8px rgba(0,0,0,0.08);
  height: var(--header-bar-height);
  position: relative;
  z-index: 5;
}

.header-main-inner {
  height: 100%;
  display: flex;
  align-items: center;    /* Center vertically */
}

.header-main-logo {
  display: flex;
  align-items: center;
  margin-left: 50px;      /* <-- 50px from the left */
  text-decoration: none;
}

.header-main-logo img {
  height: 36px;           /* Looks balanced in a 50px bar */
  width: auto;
  display: block;
  margin: 0;
}
