/* font */
body {
    font-family: "Figtree", sans-serif;
}

/* navbar */
.fixed-navbar {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-left: 240px;
    width: calc(100% - 240px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 36px 20px 36px;
    border-left: 1px solid #F1F1F4;
    z-index: 9;
}

.fixed-navbar.minimised {
    margin-left: 70px;
    width: calc(100% - 70px);
}

.nav-header-title {
    color: #202124;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.route-text {
    color: #202124;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-left: 14px;
}

.action-container {
    gap: 24px;
}

.profile-info-container {
    gap: 12px;
}

.user-info-container {
    height: 44px;
}

.user-name {
    color: #44283D;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.user-email {
    color: rgba(68, 40, 61, 0.60);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

#show-more-info {
    cursor: pointer;
}

/* content */
.page-title {
    color: #202124;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.pt-32 {
    padding-top: 32px;
}

/* table */
.table-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
}

.table-icon-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.icon-dropdown.dropdown-toggle::after {
    display: none;
}

.icon-dropdown-menu .dropdown-item {
    color: #202124;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

/* flex gap */
.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}
