/* frontend/css/HeaderMain.css */
.header {
  width: 100%;
  height: 60px;
  background-color: var(--beige);
  z-index: 20;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: var(--scrollbar-width);
  height: 100%;
  background-color: var(--beige);
  z-index: 19;
}

.header-buttons {
  display: flex;
  gap: 15px;
  align-items: right;
  /*margin-right: var(--scrollbar-width);*/
}

.logo {
  height: 2.2rem;
  object-fit: contain;
  z-index: 21;
}

.logo-link {
  text-decoration: none;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-link:focus {
  outline: none;
}