/* -- Define CSS Variables -- */
:root {
    --alice-blue: #f2f4f7;
    --bright-gray: #E9E9E9;
    --chinese-white: #e0e0e0;
    --dark-silver: #737070;
    --gainsboro: #DEDEDE;
    --gray: #BBBBBB;
    --green: #00A74C;
    --onyx: #35353A;
    --orange: #FF7A2F;
    --silver-chalice: #ACABAB;
    --white: #FFFFFF;
    --blue: #2980b9;
    --red: #c0392b;
}




/* -- Global Reset and Styling -- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'ABC Ginto Normal Unlicensed Trial', sans-serif;                        
    user-select: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}




/* -- Body Styling -- */
body {
    background-color: var(--alice-blue);
}




/* -- Sweet Alert 2 -- */
.custom-swal-container {
    width: 420px;
}

.swal2-popup {
    width: 420px;
    font-family: 'SF Pro Display', sans-serif !important;
}

.swal2-title {
    font-weight: 500 !important;
}

.swal2-toast {
    width: 280px !important;
}




/* FullCalendar */
.fc-button-primary {
    background-color: var(--blue) !important;
    border-color: var(--blue) !important;
}

.fc-toolbar-title {
    color: var(--dark-silver) !important;
}

.fc-col-header-cell-cushion {
    color: var(--dark-silver) !important;
}

.fc-daygrid-day-number {
    color: var(--dark-silver) !important;
}




/* -- Navagation Bar -- */
.nav-container {
    min-width: 1200px;
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
}

.nav-left {
    flex-shrink: 0;
    padding: 20px;
    padding-right: 0;
    width: 270px;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.nav-logo {
    font-weight: bold;
    font-size: 25px;
    color: var(--dark-silver);
    text-align: center;
    margin-left: -10px;
}

.nav-profile {
    width: calc(100% - 20px);
    margin: 28px 0;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.nav-profile-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 2px solid var(--blue);
    image-rendering: optimizeSpeed;
}

.nav-profile-name {
    font-size: 20px;
    color: var(--dark-silver);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: default;
}

.nav-items {
    padding-right: 20px;
    height: calc(100vh - 200px);
    overflow-y: auto;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-items::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.nav-items::-webkit-scrollbar-track {
    background-color: transparent;
}

.nav-items::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}

.nav-items::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.nav-item {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-item:hover {
    background-color: var(--bright-gray);
}

.nav-item.active {
    background-color: var(--chinese-white);
}

.nav-item.disabled {
    pointer-events: none;
}

.nav-item.right {
    width: 100px;
    position: absolute;
    top: 18px;
    right: 0;
    padding: 8px 9px;
    gap: 9px;
}

.nav-item-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-item-text {
    font-size: 16px;
    color: var(--dark-silver);
}

.nav-item-text.active {
    color: var(--dark-silver);
}

.nav-item-text.logout {
    color: var(--orange);
}

.nav-item-image:last-child {
    margin-left: auto;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    transition: all 0.2s;
}

.nav-item-image:last-child.active {
    margin-top: 2px;
    transform: rotate(180deg);
}

.nav-item-dropdown {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-item-dropdown.active {
    display: flex;
}

.nav-item-dropdown-text {
    width: 100%;
    height: 44px;
    padding-left: 44px;
    border-radius: 8px;
    color: var(--dark-silver);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-item-dropdown-text:hover {
    background-color: var(--bright-gray);
}

.nav-item-dropdown-text.active {
    color: var(--blue);
}

.nav-item-space {
    min-height: 100px;
    height: 100%;
}

.nav-right {
    width: 100%;
    padding: 28px;
    padding-top: 0;
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.nav-right::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.nav-right::-webkit-scrollbar-track {
    background-color: transparent;
}

.nav-right::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}

.nav-right::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.nav-header {
    position: sticky;
    top: 0;
    padding: 28px 0;
    background-color: var(--alice-blue);
    display: flex;
    gap: 14px;
    z-index: 1;
}

.nav-header-button {
    position: absolute;
    top: 21px;
    left: 0;
    padding: 8px 15px;
    background-color: #00A74C;
    border-radius: 7px;
    cursor: pointer;
}

.nav-header-button p {
   color: var(--white);
}

.nav-header-line {
    position: absolute;
    top: 21px;
    left: 80px;
    height: 35px;
    width: 1px;
    background-color: var(--dark-silver);
}

.nav-header-title-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 95px;
}

.nav-header-title-info img {
    width: 12px;
	height: 12px;
	margin-left: 1.3px;
	transform: rotate(-90deg);
}

.nav-title {
    font-size: 20px;
    color: var(--dark-silver);
    cursor: default;
    text-transform: uppercase;
}

.nav-content {
    height: calc(100vh - 112px);
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gainsboro)
}

.nav-content.transparent {
    background-color: initial;
}




/* -- Dashboard -- */
.dashboard-container {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.dashboard-card {
    flex: auto;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.dashboard-card.space-between {
    justify-content: space-between;
}

.dashboard-card.green {
    background: linear-gradient(to right, #00A74C 0%, #00A74C 100%);
}

.dashboard-card.blue {
    background: linear-gradient(to right, #0687E4 0%, #0687E4 100%);
}

.dashboard-card.purple {
    background: linear-gradient(to right, #B208AC 0%, #B208AC 100%);
}

.dashboard-card.orange {
    background: linear-gradient(to right, #FF7A2F 0%, #FF7A2F 100%);
}

.dashboard-card.pink {
    background: linear-gradient(to right, #FF9A9A 0%, #FF9A9A 100%);
}

.dashboard-card.skyblue {
    background: linear-gradient(to right, #6096B4 0%, #6096B4 100%);
}

.dashboard-card.lavender {
    background: linear-gradient(to right, #7286D3 0%, #7286D3 100%);
}

.dashboard-card-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.dashboard-card-text {
    color: var(--white);
    font-size: 14px;
    cursor: default;
}

.dashboard-card-text-bold {
    color: var(--white);
    font-size: 30px;
    font-weight: bold;
    cursor: default;
}

.dashboard-line {
    margin: 28px 0;
    width: 100%;
    height: 2px;
    background-color: gray;
}

.dashboard-gap {
    width: 100%;
    height: 28px;
}

.dashboard-box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    border: 1px solid var(--gainsboro);
}

.dashboard-box.width {
    flex: auto;
    width: 600px;
    height: 400px;
}

.dashboard-box.height {
    flex: 1;
    height: 400px;
}

.dashboard-box-header {
    margin-bottom: 20px;
    display: flex;
    width: 100%;
    gap: 30px;
}

.dashboard-box-header.margin-bottom {
    margin-bottom: 0;
}

.dashboard-box-title {
    font-size: 20px;
    color: var(--dark-silver);
    cursor: default;
}

.dashboard-box-content {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 400px;
}

.dashboard-box-content-column {
    display: flex;
    flex-direction: column;
}

.dashboard-box-content-column-text {
    white-space: nowrap;
    color: var(--dark-silver);
    font-size: 17px;
}

.dashboard-box-content-column-bold {
    color: var(--dark-silver);
    font-weight: bold;
    font-size: 74px;
}

.dashboard-box-content-line {
    width: 100%;
    height: 2px;
    background-color: var(--dark-silver);
}

.dashboard-input-field {
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4px;
    border-radius: 4px;
    border: 1px solid var(--gray);
}

.dashboard-input-text {
    font-size: 14px;
    width: 80px;
    outline: none;
    border: none;
    color: var(--dark-silver);
    pointer-events: none;
}

.dashboard-input-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
    margin-top: 2px;
    transition: all 0.2s
}

.dashboard-select-options {
    display: none;
    border-radius: 4px;
    background-color: var(--white);
    border: 1px solid var(--gray);
    position: absolute;
    top: calc(24px + 2px);
    left: 0;
    width: 100%;
    overflow-y: auto;
    z-index: 1;
}

.dashboard-select-option {
    color: var(--dark-silver);
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.dashboard-select-option:hover {
    background-color: var(--bright-gray);
}

.dashboard-button {
    background-color: var(--white);
    color: var(--dark-silver);
    font-size: 14px;
    width: 50px;
    padding: 3px;
    outline: none;
    border: 1px solid var(--gray);
    border-radius: 4px;
    white-space: nowrap;
    cursor: pointer;
}

.dashboard-button:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.dashboard-button:active {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

/* new */
.dashboard-box-content.column {
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 0;
    min-width: 300px;
}

.dashboard-box-content-button {
    display: flex;
    background-color: var(--blue);
    padding: 15px;
    width: 100%;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.dashboard-box-content-button img {
    display: flex;
    background-color: var(--blue);
}

.dashboard-box-content-button p {
   font-size: 16px;
   font-weight: bold;
   color: var(--white);
}

.dashboard-map-container {
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
}

.dashboard-map-container #map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}




/* -- Table Elements -- */
.table-container {
    height: 100%;
    padding: 28px;
}

.table-header {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.table-input-field {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 240px;
    padding: 9px;
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: 8px;
}

.table-input-field:focus-within {
    outline: 2px solid var(--blue);
    outline-offset: -1px;
}

.table-input-icon {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.table-input-text {
    color: var(--dark-silver);
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    text-overflow: ellipsis;
}

.table-input-text::placeholder {
    color: var(--gray);
}

.table-button {
    display: flex;
    align-items: center;
    gap: 9px;
    background-color: var(--blue);
    width: auto;
    height: 39px;
    padding: 0 13px;
    border-radius: 8px;
    margin-left: 15px;
    cursor: pointer;
}

.table-button.icon {
    padding-left: 10px;
}

.table-button.actions {
    padding: 0 8px;
    height: 30px;
    margin-left: 0;
}

.table-button.actions-icon {
    gap: 4px;
    padding-left: 4px;
}

.table-button-text {
    color: var(--white);
    font-size: 14px;
}

.table-button-icon {
    margin-bottom: -2px;
    width: 19px;
    height: 19px;
    object-fit: contain;
}

.table-touchable {
    width: 39px;
    height: 39px;
    border-radius: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.table-touchable:hover {
    background-color: var(--bright-gray);
}

.table-touchable-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.table-filter {
    display: none;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 48px;
    right: 6px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--gray);
    background-color: var(--white);
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    z-index: 2;
}

.table-filter.active {
    display: flex;
}

.table-filter-text {
    font-size: 15px;
    color: var(--dark-silver);
    transition: all 0.3s;
}

.table-filter-gap {
    width: 100%;
}

.table-filter-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.table-filter-radio:hover .table-filter-radio-circle {
    border-color: var(--blue);
}

.table-filter-radio:hover .table-filter-radio-circle::after {
    background-color: var(--blue);
}

.table-filter-radio:hover .table-filter-text {
    color: var(--blue);
}

.table-filter-radio-circle {
    position: relative;
    width: 14px;
    height: 14px;
    background-color: var(--white);
    border: 1px solid var(--dark-silver);
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s;
}

.table-filter-radio-circle::after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    background-color: var(--dark-silver);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.table-filter-radio input[type="radio"] {
    display: none;
}

.table-filter-radio input[type="radio"]:checked + .table-filter-radio-circle {
    background-color: var(--white);
}

.table-filter-radio input[type="radio"]:checked + .table-filter-radio-circle::after {
    display: block;
}

.table-filter-button {
    margin-left: auto;
    padding: 5px 10px;
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    font-size: 14px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}

.table-space {
    flex: 1;
}

.table-line {
    margin-left: 20px;
    margin-right: 10px;
    width: 1px;
    height: 41px;
    background-color: var(--dark-silver);
}

.table-menu {
    margin-bottom: 14px;
    display: flex;
    gap: 15px;
}

.table-menu-item {
    height: 22px;
    color: var(--dark-silver);
    padding-bottom: 3px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
}

.table-menu-item:hover {
    color: var(--blue);
}

.table-menu-item:hover.active {
    border-bottom: 1px solid var(--blue);
}

.table-menu-item.active {
    border-bottom: 1px solid var(--dark-silver);
}

.table-content {
    height: calc(100vh - 234px);
    overflow: auto;
    background-color: var(--white);
}

.table-content::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.table-content::-webkit-scrollbar-track {
    background-color: transparent;
}

.table-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}

.table-content::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.table-content.height {
    height: calc(100vh - 270px);
}

.table-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table-content table thead tr td {
    position: sticky;
    top: 0;
    font-weight: 500;
    color: var(--onyx);
    font-size: 15px;
    text-align: left;
    height: 48px;
    background-color: var(--white);
    border-bottom: 1px solid var(--chinese-white);
    padding: 5px 16px;
}

.table-content table thead tr td.nowrap {
    white-space: nowrap;
}

.table-content table tbody tr {
    transition: all 0.3s;
    cursor: default;
}

.table-content table tbody tr.selectable {
    cursor: pointer;
}

.table-content table tbody tr.selectable.active {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.table-content table tbody tr td {
    color: var(--dark-silver);
    font-size: 15px;
    text-align: start;
    height: 48px;
    border-bottom: 1px solid var(--chinese-white);
    padding: 5px 16px;
}

.table-content table tbody tr td.active {
    color: var(--dark-silver);
}

.table-content table tbody tr td.nowrap {
    white-space: nowrap;
}

.table-actions {
    display: flex;
    gap: 1px;
    align-items: center;
}

/* new */

.table-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-bottom: 2px solid var(--blue);
    margin-bottom: 20px;
}

.table-info p:first-child {
    color: var(--dark-silver);
}

.table-info p:last-child {
    font-size: 35px;
    color: var(--dark-silver);
    font-weight: bold;
    margin-bottom: 10px;
}

.table-selected-items {
    width: 450px;
    background-color: var(--white);
    padding: 28px;
    border-radius: 8px;
}

.table-selected-items-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--blue);
    margin-bottom: 20px;
}

.table-selected-items-header img {
    width: 30px;
    height: 30px;
}

.table-selected-items-header p {
    color: var(--dark-silver);
    margin-bottom: 10px;
}

.table-quantity {
    width: 40px;
    padding: 2px;
    border-radius: 8px;
    margin-right: 2px;
    text-align: center;
    border: none;
    outline: none;
    border: 1px solid var(--dark-silver);
}

.table-input-select {
    padding: 5px;
    border-radius: 5px;
    color: var(--dark-silver);
    outline: none;
    font-size: 15px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.table-input-select:focus {
    outline: 2px solid var(--blue);
    outline-offset: -1px;
}

.table-input-select-icon {
    position: absolute;
    top: 18px;
    right: calc(16px + 6px);
    width: 15px;
    pointer-events: none;
}



/* -- Form Elements -- */
.input-field {
    display: flex;
    align-items: center;
    position: relative;
    min-width: 264px;
    height: 44px;
    background-color: var(--white);
    border: 1px solid var(--gray);
    padding: 0 7px;
    border-radius: 8px;
}

.input-field.margin {
    margin-bottom: 14px;
}

.input-field.disabled {
    background-color: var(--bright-gray);
}

.input-field.disabled .input-text {
    pointer-events: none;
}

.input-field.disabled .input-datepicker {
    pointer-events: none;
}

.input-field:focus-within {
    outline: 2px solid var(--blue);
    outline-offset: -1px;
}

.input-text {
    position: absolute;
    top: 19px;
    width: calc(100% - 16px);
    background-color: transparent;
    color: var(--dark-silver);
    font-size: 16px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
}

.input-text.icon {
    width: calc(100% - 40px);
}

.input-text.disabled {
    pointer-events: none;
}

.input-text::placeholder {
    color: var(--gray);
}

.input-placeholder {
    position: absolute;
    top: 13px;
    color: var(--gray);
    font-size: 16px;
    pointer-events: none;
}

.input-placeholder.transition {
    transition: all 0.3s;
}

.input-text:focus + .input-placeholder,
.input-text:not(:placeholder-shown) + .input-placeholder {
    position: absolute;
    top: 6px;
    font-size: 12px;
}

.input-icon {
    margin-top: 3px;
    position: absolute;
    right: 11px;
    width: 17px;
    background-color: transparent;
}

.input-icon.active {
    margin-top: 4px;
    transition: all 0.2s;
}

.input-icon.rotate {
    transform: rotate(180deg);
}

.input-icon.disabled {
    pointer-events: none;
}

.input-items {
    display: none;
    position: absolute;
    top: calc(44px + 5px);
    left: 0;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: 8px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    max-height: calc(45px * 4);
    overflow-y: auto;
    transition: all 0.3s;
}

.input-items::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.input-items::-webkit-scrollbar-track {
    background-color: transparent;
}

.input-items::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}

.input-items::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.input-item {
    display: flex;
    align-items: center;
    padding: 7px;
    height: 44px;
    color: var(--dark-silver);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.input-item:hover {
    background-color: var(--bright-gray)
}

.select-field {
    display: flex;
    align-items: center;
    position: relative;
    min-width: 264px;
    height: 44px;
    background-color: var(--white);
    border: 1px solid var(--gray);
    padding: 0 7px;
    border-radius: 8px;
}

.select-field.margin {
    margin-bottom: 14px;
}

.select-field.disabled {
    background-color: var(--bright-gray);
}

.select-field.active {
    outline: 2px solid var(--blue);
    outline-offset: -1px;
}

.select-options {
    display: none;
    position: absolute;
    top: calc(44px + 5px);
    left: 0;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: 8px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    max-height: calc(45px * 4);
    overflow-y: auto;
    transition: all 0.3s;
}

.select-options::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.select-options::-webkit-scrollbar-track {
    background-color: transparent;
}

.select-options::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}

.select-options::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.select-option {
    display: flex;
    align-items: center;
    padding: 7px;
    height: 44px;
    color: var(--dark-silver);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.select-option:hover {
    background-color: var(--bright-gray)
}

.button {
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    font-size: 16px;
    width: 100%;
    padding: 11.5px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}

.button.width {
    width: auto;
}

.button.margin {
    margin-bottom: 14px;
}

.button.cancel {
    color: var(--dark-silver);
    background-color: var(--gainsboro);
    border: 1px solid var(--gainsboro);
}

.button.disabled {
    color: var(--dark-silver);
    background-color: var(--bright-gray);
    border: 1px solid var(--bright-gray);
    pointer-events: none;
}




/* -- Modal Elements -- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    display: grid;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    padding: 35px;
}

.modal::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.modal::-webkit-scrollbar-track {
    background-color: transparent;
}

.modal::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}

.modal::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.modal.padding {
    padding: 0;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
}

.modal-body {
    display: flex;
}

.modal-left {
    padding-top: 48px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.modal-image-thumbnail {
    width: 120px;
    height: 120px;
    background: url('../images/no_image.png');
    background-position: center;
    background-size: cover;
    transition: .5s;
    border-radius: 50%;
    border: 1px solid var(--gray);
}

.modal-right {
    width: 840px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.modal-right.left {
    padding-left: 0;
}

.modal-right-text {
    color: var(--dark-silver);
    font-size: 16px;
    margin-bottom: 10px;
}

.modal-right-text.margin {
    margin-top: 20px;
}

.modal-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.modal-input {
    flex: auto;
}

.modal-button {
    background-color: white;
    color: #737070;
    border-color: #BBBBBB;
    max-width: 119px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-pdf {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-pdf-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-pdf-button-image {
    width: 25px;
    height: 25px;
}

/* new */

.modal-body-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.modal-body-row {
    display: flex;
    gap: 20px;
}

.modal-body-row.end {
    align-items: flex-end;
    justify-content: flex-end;
}

.modal-body-row.space {
    height: calc(44px + 14px);
}

.modal-body-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-body-line {
    margin-top: 20px;
    width: 100%;
    height: 2px;
    background-color: var(--gray);
}

.modal-body-line.bottom {
    margin-bottom: 20px;
}

.modal-body-space {
    margin-bottom: 20px;
}

.modal-body-row-button {
    flex: 1;
    height: 44px;
    background-color: var(--blue);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    border: none;
}

.modal-info {
    color: var(--dark-silver);
    width: 100%;
    display: flex;
    flex-direction: column;
}




/* -- Sign in -- */
.signin-container {
    height: 100vh;
    padding: 30px;
    display: grid;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.signin-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.signin-container::-webkit-scrollbar-track {
    background-color: transparent;
}

.signin-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}

.signin-container::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.signin-form {
    width: 420px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.signin-company {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.signin-company-image {
    width: 44px;
    height: 44px;
    image-rendering: optimizeSpeed;
}

.signin-company-name {
    font-size: 23px;
    font-weight: bold;
    color: var(--dark-silver);
    cursor: default;
    text-align: center;
}

.signin-text {
    margin-top: 55px;
    margin-bottom: 50px;
}

.signin-text-title {
    font-size: 23px;
    font-weight: bold;
    color: var(--dark-silver);
    cursor: default;
}

.signin-text-description {
    font-size: 16px;
    color: var(--silver-chalice);
    cursor: default;
}

.signin-forgot {
    margin-left: auto;
    margin-bottom: 50px;
    font-size: 16px;
    color: var(--silver-chalice);
    cursor: pointer;
}




/* -- Scroll -- */
.scrollbar-padding {
    padding: 5px;
}

.scrollbar-container {
    display: grid;
    height: calc(100vh - 10px);
    overflow: auto;
    scroll-behavior: smooth;
}

.scrollbar-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.scrollbar-container::-webkit-scrollbar-track {
    background-color: transparent;
}

.scrollbar-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 8px;
}

.scrollbar-container::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}




/* -- Main -- */
.main-header {
    width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.main-header img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.main-header p {
    font-size: 30px;
    font-weight: bold;
    color: var(--dark-silver);
}

.main-body {
    width: 1000px;
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.main-body p {
    color: var(--dark-silver);
    font-size: 20px;
}

.main-body div {
    display: flex;
    gap: 28px;
}

.main-card {
    min-width: 290px;
    padding: 40px 28px;
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    cursor: pointer;
}

.main-card img {
    width: 100px;
    height: 100px;
}

.main-card div {
    width: 100%;
    height: 2px;
    margin-bottom: -15px;
    background-color: var(--dark-silver);
}

.main-card p {
    color: var(--dark-silver);
    font-weight: bold;
    font-size: 25px;
}




/* -- Inventory -- */
.inventory-alert {
    padding: 20px;
}

.inventory-alert-header {
    background-color: #FD813F;
    padding: 10px;
    border-radius: 8px;
    width: 300px;
}

.inventory-alert-header.red {
    background-color: #FA5F5F;
}

.inventory-alert-header p {
    font-size: 12px;
    color: var(--white);
}

.inventory-alert-body {
    background-color: var(--white);
    width: 100%;
}

.inventory-alert-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px 0;
    border-bottom: 2px dotted black;
}

.inventory-alert-row:last-child {
    border: none;
}

.inventory-alert-row-title {
    font-weight: bold;
    font-size: 20px;
    color: var(--dark-silver);
}

.inventory-alert-row-info {
    font-size: 18px;
    color: var(--dark-silver);
}

.inventory-alert-row-exp {
    font-size: 18px;
    color: #FD813F;
    font-weight: bold;
}

.inventory-alert-button {
    padding: 8px;
    border-radius: 8px;
    width: 100%;
    background-color: var(--blue);
    cursor: pointer;
}

.inventory-alert-button p {
    font-size: 16px;
    color: var(--white);
    text-align: center;
}