/* variables.scss */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* palette.scss - Full Spectrum Master Map */
/* --------------------------------------------
   Helpers
-------------------------------------------- */
/* --------------------------------------------
   Breakpoints
-------------------------------------------- */
/* --------------------------------------------
   Spacing
-------------------------------------------- */
/* --------------------------------------------
   Elevation
-------------------------------------------- */
/* --------------------------------------------
   Radius
-------------------------------------------- */
/* --------------------------------------------
   Typography
-------------------------------------------- */
/* --------------------------------------------
   Theme tokens
-------------------------------------------- */
:root {
  /* Brand */
  --primary: #f98e3a;
  --primary-light: #ffe9d6;
  --primary-dark: #3f1705;
  --accent: #ee7012;
  /* RGB channels for focus rings etc */
  --primary-rgb: 249 142 58;
  /* Status */
  --success: #16a34a;
  --info: #0d6efd;
  --warning: #eab308;
  --danger: #dc2626;
  /* Surfaces */
  --bg-app: #fbfcfd;
  --bg-surface: #f8f9fa;
  --bg-card: #ffffff;
  --border-color: #e9ecef;
  /* Text */
  --text-main: #212529;
  --text-muted: #495057;
  --text-light: #6c757d;
  --text-inverse: #ffffff;
  --table-header-bg: var(--bg-surface);
  --table-striped-bg: #ffe9d6;
  --table-hover-bg: #ffd0ad;
  --table-nth-color: --text-main ;
}

[data-theme=dark] {
  --primary: #f98e3a;
  --primary-light: #8f3c0b;
  --primary-rgb: 249 142 58;
  --bg-app: #212529;
  --bg-surface: #212529;
  --bg-card: #343a40;
  --border-color: #495057;
  --text-main: #f8f9fa;
  --text-muted: #ced4da;
  --text-light: #6c757d;
  --table-header-bg: var(--bg-surface);
  --table-striped-bg: #495057;
  --table-hover-bg: #6c757d;
  --table-nth-color: #f8f9fa;
}

/* --------------------------------------------
   Z-index
-------------------------------------------- */
/* --------------------------------------------
   Grid & layout maps
-------------------------------------------- */
/* --------------------------------------------
   Components baseline tokens
-------------------------------------------- */
/* sizing maps */
/* motion */
/* focus ring */
/* sidebar */
:root {
  --topbar-bg: rgba(255, 255, 255, 0.72);
  --topbar-border: rgba(0, 0, 0, 0.08);
  --topbar-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

[data-theme=dark] {
  --topbar-bg: rgba(33, 37, 41, 0.65);
  --topbar-border: rgba(255, 255, 255, 0.10);
  --topbar-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.desktop-menu {
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
  position: fixed !important;
}
.desktop-menu .header {
  flex: 0 0 70px;
  height: 70px;
  max-height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  margin-top: -5px;
}
.desktop-menu .header .logo {
  width: 60px;
}
.desktop-menu .body {
  max-height: auto;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.desktop-menu .body .menu-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 5px;
  font-size: 0.85rem;
  position: relative;
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms cubic-bezier(0.4, 0, 0.2, 1), padding-left 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.desktop-menu .body .menu-item:hover {
  background-color: #ffe9d6;
  color: var(--primary-dark);
  padding-left: 25px;
  border: none;
}
.desktop-menu .body .menu-item.active {
  background-color: #ffe9d6;
  padding-left: 20px;
  color: var(--primary-dark);
}
.desktop-menu .footer {
  height: auto;
  max-height: auto;
  flex: 0 0 1;
  display: flex;
  border-top: 1px solid var(--border-color);
  flex-direction: row;
  padding: 5px 0px;
  align-items: center;
  gap: 10px;
}
.desktop-menu .footer .avatar-container {
  flex: 0 0 15%;
  max-width: 15%;
}
.desktop-menu .footer .avatar-container .avatar {
  width: 35px;
  max-width: 35px;
  height: 35px;
  max-height: 35px;
  border-radius: 50%;
}
.desktop-menu .footer .action-container {
  display: flex;
  flex: 1;
  align-items: center;
  height: 100%;
  padding-right: 5px;
  position: relative;
  justify-content: flex-end;
}
.desktop-menu .footer .action-container .action-button {
  cursor: pointer;
  position: absolute;
}
.desktop-menu .footer .action-container .user-actions {
  width: 180px;
  background-color: var(--bg-surface);
  position: absolute;
  left: calc(100% + 11px);
  bottom: 10px;
  border-radius: 0.25rem;
  display: none;
  flex-direction: column;
  padding: 0px;
  border-right: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.desktop-menu .footer .action-container .user-actions.is-active {
  display: flex;
}
.desktop-menu .footer .action-container .user-actions .menu-item {
  padding: 4px 10px;
  transition: all 300ms;
  border-radius: 0.25rem;
}
.desktop-menu .footer .action-container .user-actions .menu-item:hover {
  background-color: var(--border-color);
}
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
}

.mobile-navbar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-navbar {
    display: block;
    padding: 5px 10px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
    margin-bottom: 10px;
    height: 60px;
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    background-color: var(--bg-app);
  }
}
.mobile-navbar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-navbar .inner .logo {
  height: 50px;
  position: relative;
}
.mobile-navbar .inner .logo img {
  height: 100%;
}
.mobile-navbar .inner .toggle-btn {
  font-size: 32px;
  color: var(--text-muted);
}

.mobile-sidebar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sidebar {
    height: calc(100vh - 60px);
    min-height: calc(100vh - 60px);
    top: 60px;
    left: -100%;
    width: 80%;
    background-color: var(--bg-app);
    transition: all 300ms;
    position: fixed;
    display: block;
    z-index: 998;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .mobile-sidebar .inner {
    display: flex;
    flex-direction: column;
    padding: 10px;
    justify-content: space-between;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
  }
  .mobile-sidebar .inner .links {
    max-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .mobile-sidebar.active {
    left: 0;
  }
}

main.app {
  width: calc(100% - 250px);
  margin-left: 250px;
}
@media (max-width: 768px) {
  main.app {
    width: 100%;
    margin: 0;
    margin-top: 70px;
  }
}

.row-editor:hover {
  background-color: transparent !important;
}
.row-editor td {
  padding: 0 !important;
}

.home-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .mobile-column-reverse {
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center !important;
  }
}
@media (max-width: 768px) {
  .mobile-column-reverse [class^=col-] {
    gap: 10px;
  }
}

.inventory-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 768px) {
  .inventory-accordion {
    flex-direction: column;
  }
}
.inventory-accordion .inventory-item {
  width: calc(25% - 10px);
  flex: 0 0 calc(25% - 10px);
}
@media (max-width: 768px) {
  .inventory-accordion .inventory-item {
    width: 100%;
    flex: 1;
  }
}

input.changed {
  background-color: #ffd0ad;
  color: #000;
}

.row-split-height {
  height: 45vh;
  min-height: 45vh;
  max-height: 45vh;
  overflow-y: auto;
}

.notes-table {
  max-height: 300px;
  overflow-y: auto;
}

.relative {
  position: relative;
}

.invoice-modal .modal-body {
  min-height: 45vh;
}
.invoice-modal .searchBox {
  background-color: var(--bg-app);
  position: absolute;
  top: 100%;
  width: 100%;
  max-height: 120px;
  overflow-y: auto;
  border-radius: 0 0 0.5rem 0.5rem;
  margin-bottom: 20px;
  display: none;
}
.invoice-modal .searchBox.active {
  display: block;
  z-index: 999;
}
.invoice-modal .searchBox .search-item {
  display: block;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 3px 5px;
}
.invoice-modal .searchBox .search-item:hover {
  background-color: #ffd0ad;
  color: #031633;
}

.disabled-input {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
}

.stat-select {
  position: relative;
  cursor: pointer;
  width: 150px;
}
.stat-select .drop-down {
  width: 150%;
  height: auto;
  max-height: 25vh;
  overflow-y: auto;
  background-color: var(--bg-app);
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 0.25rem;
  border: 1px solid var(--border-color);
  cursor: default;
  flex-direction: column;
  display: none;
  z-index: 999;
  pointer-events: none;
}
.stat-select .drop-down.active {
  display: flex;
}
.stat-select .drop-down .item-container {
  padding: 3px 3px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s;
  pointer-events: none;
}
.stat-select .drop-down .item-container .item {
  width: 100%;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  pointer-events: all;
}
.stat-select .drop-down .item-container:hover {
  transition: background-color 0.2s;
  background-color: var(--border-color);
}

.graph-card {
  height: 35vh;
  min-height: 35vh;
  max-height: 35vh;
}

.scanContainer {
  min-width: 35vw;
}

.uploadImage img {
  max-width: 200px;
  max-height: 200px;
  margin: 10px;
}

.qrImage {
  display: inline-block;
}
.qrImage img {
  width: 80px;
  height: 80px;
}

.hashLink {
  font-size: 12px;
}/*# sourceMappingURL=theme.css.map */