body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: rgb(250, 247, 241);
}

.fixed-header {
    display: flex;
    background: #FFF;
    z-index: 1;
    filter: drop-shadow(2px 2px 3px #b5b5b5);
    padding: 0px 20px;
    right: 30px;
    padding: 20px;
}

.right-container {
    width: 20%;
    padding-left: 20px;
}

.left-container {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
}

.logo-img {
    height: 70px;
}

.line {
    width: 100%;
    padding-top: 10px;
    border-bottom: 1px solid gray;
}


nav {
    background-color: var(--panelColor);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--highlightColor);
    position: sticky;
    top: 0;
}

.fixed-header .fixed-header.navButtons {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

.fixed-header button {
    background-color: var(--buttonHighlight);
    color: var(--buttonHighlightColor);
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
    font-weight: bold;
    font-size: 15px;
}

.fixed-header button:hover {
    background-color: var(--buttonBackground);
    color: var(--buttonHighlight);
}