@charset "UTF-8";
/* Font Family */
@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");
/*
    NOTE: Use same variable naming conversion
    Swap --delphi with --brand on site theme.
*/
:host, :root {
  --delphi-font: "Hind Siliguri", sans-serif;
  --delphi-primary: #056946;
  --delphi-generic-red: #FF5722;
  --delphi-generic-green: #4CAF50;
  --delphi-generic-yellow: #FFC107;
  --delphi-generic-white: #EEEEEE;
  --delphi-font-c900: #101010;
  --delphi-font-c600: #7b7b7b;
  --delphi-font-alt-c900: #EEEEEE;
  --delphi-font-alt-c600: #868f9f;
  --delphi-fg-primary: #7B7B7B;
  --delphi-bg-primary: #F2F3F4;
  --delphi-bg-secondary: #FDFDFD;
  --delphi-bg-tertiary: #E2E2E2;
}

:host-context(.dark), :root.dark {
  --delphi-font-c900: #EEEEEE;
  --delphi-font-c600: #868f9f;
  --delphi-font-alt-c900: #101010;
  --delphi-font-alt-c600: #7b7b7b;
  --delphi-bg-primary: #0D0F11;
  --delphi-bg-secondary: #191D23;
  --delphi-bg-tertiary: #262C36;
  --delphi-fg-primary: #868F9F;
}

/* Works on Chrome/Edge/Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--delphi-bg-primary);
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--delphi-bg-tertiary);
  border: 2px solid var(--delphi-bg-primary);
}

::-webkit-scrollbar-corner {
  background: var(--delphi-bg-primary);
}

/* ENHANCED CSS RESET */
html {
  height: 100%;
  line-height: 1.15;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Comprehensive element reset */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, ul, li, blockquote, a, address, cite, code, em, img, small, form, label, article, aside, canvas, header, nav, main, footer, audio, video, pre {
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

*.no-scrollbar {
  scrollbar-width: none;
}
*.no-scrollbar::-webkit-scrollbar {
  width: 0px;
}
*.no-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
*.no-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
  border: 1px solid transparent;
}

/* Body improvements */
body {
  min-height: 100%;
  text-rendering: optimizeSpeed;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
  display: block;
}

/* List reset */
ol, ul, li {
  list-style: none;
}

/* Quote reset */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: none;
}

/* Image improvements */
img {
  height: auto;
  display: block;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

/* Media elements */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

/* SVG improvements */
svg {
  fill: currentColor;
}

/* Link improvements */
a {
  cursor: pointer;
  background-color: transparent;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a * {
  cursor: pointer;
}

a:focus {
  border: 0;
  outline: none;
}

a:link, a:visited, a:active {
  text-decoration: none;
}

/* Button improvements */
button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
}

/* Form element improvements */
button, input, label, select, textarea {
  border: 0;
  margin: 0;
  padding: 0;
  outline: none;
  font-family: inherit;
}

button:focus, input:focus, label:focus, select:focus, textarea:focus {
  border: none;
  outline: none;
}

/* Remove default button styles in Safari */
button, [type=button], [type=reset], [type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

/* Input improvements */
input::-ms-reveal, input::-ms-clear {
  display: none;
}

/* Remove search input styling */
input[type=search] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  appearance: none;
  -webkit-appearance: none;
}

/* Number input arrows removal */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}

/* Textarea improvements */
textarea {
  overflow: auto;
  resize: vertical;
}

/* Autofill styling */
input:-webkit-autofill,
textarea:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  caret-color: #313131;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 0 0 1000px #313131 inset !important;
  -webkit-box-shadow: 0 0 0 1000px #313131 inset !important;
}

/* Progress element */
progress {
  vertical-align: baseline;
}

/* Details element */
details {
  display: block;
}

summary {
  cursor: pointer;
  display: list-item;
}

[contenteditable] {
  outline: none; /* Remove blue focus outline */
  border: none; /* Remove default border */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
  background: transparent;
  color: inherit;
  font: inherit; /* Use parent font */
  letter-spacing: inherit;
  white-space: nowrap; /* Optional – behave like input */
}

[contenteditable]:focus {
  outline: none;
}

/* Template element */
template {
  display: none;
}

/* Hidden attribute */
[hidden] {
  display: none !important;
}

/* Accessibility improvements */
[aria-busy=true] {
  cursor: progress;
}

[aria-disabled=true] {
  cursor: not-allowed;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
  }
}
/* Utility classes */
[data-hidden=true] {
  display: none;
}

.no-scroll {
  height: 100vh !important;
  overflow: hidden !important;
}

/* Screen reader only content */
.sr-only {
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}

/* Focus visible improvements for better accessibility */
:focus-visible {
  outline-offset: 2px;
  outline: 2px solid currentColor;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Dashboard Styles */
html {
  height: unset;
}

body {
  padding: 12px;
  position: relative;
  height: calc(100vh - 24px);
  font-family: var(--delphi-font);
  background-color: var(--delphi-bg-primary);
}

#workspace {
  overflow: auto;
  margin-top: 70px;
  position: relative;
  margin-left: 293px;
  height: calc(100% - 70px);
  width: calc(100% - 293px);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

#workspace::before, #workspace::after {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  z-index: 99;
  height: 10px;
  display: block;
  position: sticky;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), to(var(--delphi-bg-primary)));
  background: linear-gradient(0deg, transparent, var(--delphi-bg-primary));
}

#workspace::after {
  top: unset;
  bottom: 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(var(--delphi-bg-primary)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--delphi-bg-primary));
}

#workspace.extended {
  margin-left: 94px;
  width: calc(100% - 94px);
}

#handheld-menu {
  top: 7px;
  left: 17px;
  width: 20px;
  z-index: 100;
  height: 20px;
  padding: 12px;
  display: none;
  position: fixed;
}

#handheld-menu .bar {
  left: 0;
  right: 0;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  display: block;
  position: absolute;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background: var(--delphi-font-c900);
}

#handheld-menu .bar.top {
  top: 16.5px;
}

#handheld-menu .bar.bottom {
  bottom: 16.5px;
}

#handheld-menu.open .bar.top {
  top: 21px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

#handheld-menu.open .bar.bottom {
  top: 21px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

@media (max-width: 1080px) {
  body::before {
    top: -1px;
    left: 12px;
    z-index: 99;
    content: "";
    height: 56px;
    display: block;
    position: fixed;
    border-top: unset;
    width: calc(100% - 26px);
    border-radius: 0 0 16px 16px;
    border: 1px solid var(--delphi-bg-tertiary);
    background-color: var(--delphi-bg-secondary);
  }
  #handheld-menu {
    display: block;
  }
  #workspace, #workspace.extended {
    width: 100%;
    margin-top: 60px;
    margin-left: unset;
  }
}
@media (max-width: 768px) {
  #workspace, #workspace.extended {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
}
/* Generic Viewport Width for Grouping - v1.0.0 */
.vw-100, .vw-50, .vw-33 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.vw-100.center, .vw-50.center, .vw-33.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vw-100.right, .vw-50.right, .vw-33.right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.vw-100.left, .vw-50.left, .vw-33.left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.vw-100 {
  width: 100%;
}

.vw-50 {
  width: 50%;
}

.vw-33 {
  width: 33.333%;
}

@media (max-width: 768px) {
  .vw-50 {
    width: 100%;
  }
  .vw-33 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .vw-33 {
    width: 100%;
  }
}