* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  overflow-x: auto;
  font-family: "Poppins", sans-serif;
}

.page-container {
  display: inline-block;
  min-width: 100%;
}

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

  background: #262626;
  align-items: center;
  color: #717C7C;
  padding: 15px;
  border-bottom: 1px solid black;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 100%;
  box-sizing: border-box;
}

h1 {
  font-size: 24px;

}

main {
  display: flex;
  min-height: calc(100vh - 67.05px);
}

.sidebar {
  width: 200px;
  flex-shrink: 0;
  flex-grow: 0;
  background: #262626;

  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.sidebar > div:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
  font-size: 18px;
}

.sidebar a {
  text-decoration: none;
  color: black;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  color: white;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}
.sidebar a:hover {
  color: #C34043;
  border: none;
  border-left: 2px solid #C34043;
  border-radius: 0;
  transition: 0.1s;
}

.sidebar .line {
  border: 1px solid white;
  margin: 20px 0px;

}

.sidebar a.active-link {
  color: #C34043;
  border: none;
  border-left: 2px solid #C34043;
  border-radius: 0;
  transition: 0.1s;
}

.sidebar a.active-link:hover {
  color: #C34043;
  border: none;
  border-left: 2px solid #C34043;
  border-radius: 0;
  transition: 0.1s;
}

.sidebar > div:first-child:hover {
  color: #C34043;
}

.main-content {
  flex-grow: 1;
  padding: 20px 40px;

  display: flex;
  flex-direction: column;
}

.page-title {
  margin-bottom: 40px;

}


