:root {
  --navbar-height: 75px;
  --screen-height: calc(100vh - var(--navbar-height));
  --component-background: #f6f8fa;
  --main-background: #f4f2ee;
  --component-background-hover: #818b981a;
  --component-background-hover-secondary: #fecf91;
}
html,
body {
  font-family: sans-serif;
  font-size: 1.1rem;
  margin: 0
}


.header {
  background-color: var(--component-background);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  height: var(--navbar-height);

  .nav {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid black;

  }

  .nav > *:last-child {
    margin-right: 25px;
  }

  .nav > *:nth-last-child(2) {
    margin-left: auto;
    margin-right: 10px;
  }

  .button_user {
    color: #1f2328;
    cursor: pointer;
    background-color: var(--component-background-hover);
    height: 45px;
    width: 45px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .user-menu {
    margin-top: var(--navbar-height);
    padding-bottom: 10px;
    right: 0;
    position: fixed;
    min-width: 20%;
    background-color: #818b981a;
    border-bottom-left-radius: 5px;
    .menuButton {
      padding: 10px 10px;
      border-bottom: 1px #818b981a;

      p {
        margin: 0 0 0 20px;
      }

      &:hover {
        background-color: #6a737f1a;
        border-bottom: 1px solid #fd8b0d;
      }
    }

    &.hidden {
      display: none;
    }
  }

}

.button {
  color: #1f2328;
  font-family: sans-serif;
  padding: 16px;
  border-radius: 8px;
  margin: 0 3px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  i {
    margin-right: 5px;
  }

  &:hover {
    background-color: var(--component-background-hover);
  }
}

.orangeButton {
  background-color: #fd8b0d;
  padding: 15px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  i {
    margin-right: 5px;
  }
  &:hover {
    background-color: var(--component-background-hover-secondary);
  }
}

.main {
  margin-top: var(--navbar-height);
  width: 100vw;
  min-height: var(--screen-height);
  background-color: var(--main-background);
}
