:root {
  /* Backgrounds */
  --color-bg-darkest: rgb(23, 23, 23);
  --color-bg-darker:  rgb(212, 212, 212);
  --color-bg-dark:    rgb(229, 229, 229);
  --color-bg-light:   rgb(245, 245, 245);
  --color-bg-lightest: rgb(250, 250, 250);

  /* Borders */
  --color-border-default: rgb(229, 229, 229);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
}

nav {
    width: 100%;
    height: 5%;
}
nav #nav_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 30px;
    list-style-type: none;
    border-bottom: 1px solid var(--color-border-default);
}
nav #nav_list .nav_corners {
    height: 70%;
    display: flex;
}
nav #nav_list .nav_item {
    height: 100%;
    margin-right: 10px;
    background-color: var(--color-bg-darker);
    border-radius: 5px;
}
nav #nav_list .nav_item:last-child {
    margin-right: 0;
}
nav #nav_list #nav-logo {
    width: 40px;
}
nav #nav_list #nav-company {
    width: 200px;
}
nav #nav_list #nav-content {
    width: 100px;
    background-color: var(--color-bg-light);
}
nav #nav_list #nav-signin {
    width: 100px;
    background-color: var(--color-bg-darkest);
}


#description {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding: 15px 30px;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border-default);
}
#description #desc-logo {
    width: 100px;
    height: 100px;
    background-color: var(--color-bg-darker);
    border-radius: 50%;
}
#description #desc-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
#description #desc-card #dec-top div {
    width: 400px;
    height: 20px;
    background-color: var(--color-bg-dark);
    border-radius: 5px;
    margin-bottom: 10px;
}
#description #desc-card #dec-top div:first-child {
    height: 30px;
    width: 250px;
    background-color: var(--color-bg-darker);
}
#description #desc-card #desc-bottom {
    display: flex;
    gap: 10px;
}
#description #desc-card #desc-bottom div {
    width: 100px;
    height: 30px;
    background-color: white;
    border: 1px solid var(--color-border-default);
    border-radius: 5px;
}


main {
    width: 100%;
    height: 80%;
    display: flex;
}
main #records {
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    border-right: 1px solid var(--color-border-default);
}
main #records #record-headers {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style-type: none;  
    width: 100%;
    height: 7%;
    border-bottom: 1px solid var(--color-border-default);
    padding: 0 20px;
}
main #records #record-headers li {
    height: 20px;
    width: 80px;
    background-color: var(--color-bg-dark);
    border-radius: 5px;
}
main #records #record-headers li:first-child {
    background-color: var(--color-bg-darkest);
}

main #records #records-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 30px;
}
main #records #records-list .record-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}
main #records #records-list .record-item .record-title {
    width: 150px;
    height: 25px;
    background-color: var(--color-bg-dark);
    border-radius: 5px;
    margin-bottom: 10px;
}
main #records #records-list .record-item ul {
    list-style-type: none;
    width: 100%;
    display: flex;
    flex-direction: column;
}
main #records #records-list .record-item ul li {
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
main #records #records-list .record-item ul li .left {
    width: 100px;
    height: 15px;
    background-color: var(--color-bg-dark);
    border-radius: 5px;
    margin-top: 10px;
}
main #records #records-list .record-item ul li .right {
    width: 130px;
    height: 15px;
    background-color: var(--color-bg-light);
    border-radius: 5px;
    margin-top: 10px;
}

main aside {
    width: 20%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
main aside #title {
    width: 35%;
    height: 25px;
    background-color: var(--color-bg-dark);
    border-radius: 5px;
    margin-bottom: 15px;
}
main aside #notifications {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main aside #notifications .notification-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-bg-lightest);
  padding: 10px;
  border-radius: 10px;
  height: 60px;
}
main aside #notifications .notification-card .noti-logo {
  flex: 0 0 30px;
  height: 30px;
  background-color: var(--color-bg-dark);
  border-radius: 50%;
}
main aside #notifications .notification-card .noti-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
main aside #notifications .notification-card .noti-name {
  width: 100%;
  height: 16px;
  background-color: var(--color-bg-dark);
  border-radius: 5px;
}
main aside #notifications .notification-card .noti-info {
  width: 40%;
  height: 14px;
  background-color: var(--color-bg-light);
  border-radius: 5px;
}