:root {
  --body-bg-color: #dce4e3;
  --green: #18c29c;
  --light-green: #8ed7c6;
  --light-grey: #dce4e3;
  --text-color: #084236;
  --poppins: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--poppins);
}

html {
  overflow: hidden;
}

body {
  display: flex;
  overflow: hidden;
  height: 100%;
}

aside {
  flex: 1;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.header--options {
  padding: 15px;
  background: var(--green);
  height: 90%;
}

.header {
  display: flex;
  justify-content: space-between;
}

.logo,
.menu {
  cursor: pointer;
}

.options {
  margin: 25px 0;
}

.options ul {
  list-style: none;
}

.options ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px;
  text-decoration: none;
  color: var(--text-color);
}

.options ul li a:hover {
  background: var(--light-green);
  border-radius: 10px;
}

.account {
  display: flex;
  background: var(--light-green);
  height: 10%;
  padding: 10px;
  gap: 1.5rem;
  align-items: center;
}

.account img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
}

.user-info {
  width: 100px;
}

.user-name {
  font-size: 1rem;
  display: block;
  word-break: keep-all;
}

.user-job {
  display: block;
  font-size: 0.8rem;
}

.log-out {
  display: flex;
  align-items: center;
}

.log-out img {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

aside.closed .header--options {
  display: flex;
  flex-direction: column;
  align-items: center;
}

aside.closed .logo,
aside.closed .option-name {
  display: none;
}

aside.closed .account {
  justify-content: center;
}

aside.closed .user-photo,
aside.closed .user-info {
  display: none;
}

main {
  flex: 4;
  height: 100vh;
  padding: 15px;
}

main h1 {
  color: var(--text-color);
}
