* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  color: #333;
  font-weight: 400;
}

a {
  color: #333;
}
a:link {
  text-decoration: none;
}
a:visited, a:active {
  color: #333;
}

input {
  outline: none;
}

body {
  display: flex;
  height: 100vh;
  background: lightgray;
}

aside {
  flex-shrink: 0;
  width: 300px;
  height: 100%;
  background: white;
  padding: 1rem;
}
aside .logo-wrap {
  margin-bottom: 1rem;
}
aside .logo-wrap .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1/0.25;
  background: rgb(46, 91, 174);
  cursor: pointer;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 800;
}
aside .logo-wrap .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
aside .logo-wrap .aside-closer {
  display: none;
}
aside .nav__main__text {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 40px;
  font-size: 18px;
  color: #333;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  padding: 0 8px;
  background: transparent;
}
aside .nav__main__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: rgb(46, 91, 174);
  transition: width 0.3s;
  z-index: 0;
}
aside .nav__main__text .material-symbols-outlined {
  font-size: 24px;
  margin-right: 8px;
}
aside .nav__main__text span {
  z-index: 1;
}
aside .nav__main--active .nav__main__text {
  color: #fff;
  font-weight: 800;
}
aside .nav__main--active .nav__main__text::before {
  width: 100%;
}
aside .nav__sub {
  padding-left: 40px;
}
aside .nav__sub > li {
  position: relative;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}
aside .nav__sub--active {
  font-weight: 700;
}
aside .nav__sub--active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 5px;
  height: 80%;
  background: rgb(46, 91, 174);
}

.container {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  width: 100%;
  height: 100%;
}

.header {
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
  height: 60px;
  background: rgb(46, 91, 174);
  padding: 0 1.25rem;
  color: #fff;
}
.header__left .icon__menu {
  display: none;
}
.header__right {
  display: flex;
  column-gap: 10px;
}
.header__right .icon-box {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.header__right .icon-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 40px;
  height: 40px;
  font-size: 25px;
  cursor: pointer;
  border-radius: 50%;
}
.header__right .icon-box .icon:hover {
  background-color: #e3e3e3;
  font-weight: bold;
  color: #333;
}
.header__right .date-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
}
.header__right .user-box {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.header__right .user-box .user__pic {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: lightblue;
  border-radius: 100%;
  cursor: pointer;
}
.header__right .user-box .user__name {
  font-weight: 700;
  cursor: pointer;
  word-break: break-all;
}
.header__right .user-box .user__name:hover {
  text-decoration: underline;
}

.content-wrap {
  width: 100%;
  height: 100%;
  max-height: calc(100% - 75px);
  padding: 0 1rem 1rem;
}
.content-wrap a {
  border-bottom: 1px solid #999;
}
.content-wrap a:last-child {
  border-bottom: 0;
}
.content-wrap .content-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: white;
  padding: 0 1.25rem;
}
.content-wrap .content-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-wrap .content-box__header h3 {
  font-size: 30px;
  font-weight: bold;
  height: 60px;
  line-height: 60px;
}
.content-wrap .content-box__header button {
  width: 60px;
  background: rgb(46, 91, 174);
  border: none;
  height: fit-content;
  padding: 5px 0;
  border-radius: 15px;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.content-wrap .content-box .control-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  height: 50px;
}
.content-wrap .content-box .control-box label {
  width: 52%;
  height: 34px;
  background: lightgray;
  border-radius: 15px;
  overflow: hidden;
}
.content-wrap .content-box .control-box label .control-box__search {
  border: none;
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0 10px;
}
.content-wrap .content-box .control-box label .control-box__search:focus {
  background-color: rgb(242, 242, 242);
}
.content-wrap .content-box .control-box__btn-wrap {
  display: flex;
  column-gap: 4px;
}
.content-wrap .content-box .control-box__btn-wrap button {
  width: 50px;
  border: none;
  padding: 8px 0px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
.content-wrap .content-box .control-box__btn-wrap button.btn__upload {
  width: 60px;
  background: rgb(46, 91, 174);
  color: white;
  font-weight: 700;
}
.content-wrap .content-box .employee-list a {
  display: grid;
  align-items: center;
  grid-template-columns: 5% 10% 10% 20% 15% 10% 10% 20%;
  height: 100px;
  border-bottom: 1px solid #e3e3e3;
}
.content-wrap .content-box .employee-list a > div {
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: keep-all;
}
.content-wrap .content-box .employee-list a .picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.content-wrap .content-box .employee-list a .picture__box {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  overflow: hidden;
  background: lightslategray no-repeat center/cover;
}
.content-wrap .content-box .employee-list a .picture img {
  max-width: 100%;
  object-fit: cover;
}
.content-wrap .content-box .employee-list__container {
  overflow: scroll;
  flex-grow: 1;
  text-align: center;
}
.content-wrap .content-box .employee-list__header {
  display: grid;
  align-items: center;
  grid-template-columns: 5% 10% 10% 20% 15% 10% 10% 20%;
  position: sticky;
  top: 0;
  left: 0;
  height: 50px;
  background-color: rgb(203, 225, 255);
  font-size: 1rem;
  color: #333;
  font-weight: 700;
}
.content-wrap .content-box .employee-list__wrap {
  display: flex;
  flex-direction: column;
}