: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 {
    font-family: Arial, sans-serif;
    background-color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--color-border-default);
}

.header-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.logo {
    width: 140px;
    height: 28px;
    background-color: var(--color-bg-darker);
    border-radius: 4px;
}

.search-bar {
    width: 200px;
    height: 32px;
    background-color: var(--color-bg-light);
    border-radius: 4px;
}

.profile-btn {
    width: 90px;
    height: 32px;
    background-color: var(--color-bg-darkest);
    border-radius: 4px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border-default);
}

#nav-left {
  display: flex;
  gap: 8px;
}

.nav-item {
  background-color: var(--color-bg-light);
}

#nav-left .nav-item {
  width: 100px;
  height: 28px;
  border-radius: 20px;
}

.sub-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border-default);
}

.sub-nav-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sub-nav-item {
    height: 20px;
    background-color: var(--color-bg-dark);
    border-radius: 4px;
}

.sub-nav-item:nth-child(1) {
    width: 48px;
}

.sub-nav-item:nth-child(2) {
    width: 192px;
}

.sub-nav-item:nth-child(3) {
    width: 160px;
}

.sub-nav-item:nth-child(4) {
    width: 128px;
}

.sub-nav-item:nth-child(5) {
    width: 128px;
}

.sub-nav-item:nth-child(6) {
    width: 96px;
}

.sub-nav-right {
    display: flex;
    gap: 8px;
}

.action-btn {
    width: 80px;
    height: 20px;
    background-color: var(--color-bg-darker);
    border-radius: 4px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border-default);
}

.left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.table-cell {
    height: 20px;
    background-color: var(--color-bg-light);
    border-radius: 4px;
}

.cell-checkbox {
    width: 48px;
    background-color: var(--color-bg-dark);
}

.cell-one {
    width: 192px;
}

.cell-two {
    width: 160px;
}

.cell-three {
    width: 128px;
}

.cell-four {
    width: 128px;
}

.cell-five {
    width: 96px;
    background-color: var(--color-bg-dark);
}

.table-row .right {
    width: 80px;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
}

.cell-action {
    width: 24px;
    height: 24px;
    background-color: var(--color-bg-dark);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    border-top: 1px solid var(--color-border-default);
}

.footer-left {
    width: 130px;
    height: 24px;
    background-color: var(--color-bg-dark);
    border-radius: 4px;
}

.footer-right {
    display: flex;
    gap: 8px;
}

.footer-right .second{
    background-color: var(--color-bg-dark);
}

.pagination-btn {
    width: 32px;
    height: 32px;
    background-color: var(--color-bg-light);
    border-radius: 4px;
}