/* .radio-inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 440px;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .radio-inputs > * {
    margin: 6px;
  }
  
  .radio-input:checked + .radio-tile {
    border-color: #2260ff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #2260ff;
  }
  
  .radio-input:checked + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: #2260ff;
    border-color: #2260ff;
  }
  
  .radio-input:checked + .radio-tile .radio-icon svg {
    fill: #2260ff;
  }
  
  .radio-input:checked + .radio-tile .radio-label {
    color: #2260ff;
  }
  
  .radio-input:focus + .radio-tile {
    border-color: #2260ff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
  }
  
  .radio-input:focus + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
  }
  
  .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    min-height: 25px;
    border-radius: 0.2rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
  }
  
  .radio-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.25rem;
    left: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
  }
  
  .radio-tile:hover {
    border-color: #2260ff;
  }
  
  .radio-tile:hover:before {
    transform: scale(1);
    opacity: 1;
  }
  
  .radio-icon svg {
    width: 2rem;
    height: 2rem;
    fill: #494949;
  }
  
  .radio-label {
    color: #707070;
    transition: 0.375s ease;
    text-align: center;
    font-size: 13px;
  }
  
  .radio-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  } */

  /* status radios selection */
  .status-radio-input input {
    display: none;
  }
  
  .status-radio-input {
    --container_width: 260px;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 2px;
    background-color: #fff;
    color: #000000;
    width: var(--container_width);
    min-width: var(--container_width);
    overflow: hidden;
    border: 1px solid rgba(53, 52, 52, 0.226);
    caret-color: transparent;
  }
  
  .status-radio-input label {
    width: 100%;
    padding: 4px 0px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-weight: 400;
    letter-spacing: -1px;
    font-size: 12px;
  }
  
  .status-selection {
    display: none;
    position: absolute;
    height: 100%;
    width: calc(var(--container_width) / 5);
    z-index: 0;
    left: 0;
    top: 0;
    transition: .15s ease;
  }
  
  .status-radio-input label:has(input:checked) {
    color: #000000;
  }
  
  .status-radio-input label:has(input:checked) ~ .status-selection {
    background-color: hsl(0, 0%, 75%);
    display: inline-block;
    box-shadow: inset -1px -1px #292929, inset 1px 1px #fff, inset -2px -2px rgb(158, 158, 158), inset 2px 2px #ffffff;
            
  }
  
  .status-radio-input label:nth-child(1):has(input:checked) ~ .status-selection {
    transform: translateX(calc(var(--container_width) * 0/5));
  }
  
  .status-radio-input label:nth-child(2):has(input:checked) ~ .status-selection {
    transform: translateX(calc(var(--container_width) * 1/5));
  }
  
  .status-radio-input label:nth-child(3):has(input:checked) ~ .status-selection {
    transform: translateX(calc(var(--container_width) * 2/5));
  }
  
  .status-radio-input label:nth-child(4):has(input:checked) ~ .status-selection {
    transform: translateX(calc(var(--container_width) * 3/5));
  }
  .status-radio-input label:nth-child(5):has(input:checked) ~ .status-selection {
    transform: translateX(calc(var(--container_width) * 4/5));
  }

  
  
  /* search box */
  .search-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to right, #5c5c5c, #f5f5f5);
    padding: 30px;
    border-radius: 10px;
    transition: background 0.3s ease;
    perspective: 1000px;
  }
  
  .search-container label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease,
      text-shadow 0.3s ease;
  }
    
  .search-input {
    position: relative;
    width: 200px;
    height: 25px;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 2px;
    background: linear-gradient(to right, #d9d9d9, #f8f8f8);
    font-size: 12px;
    color: #555;
    outline: none;
    transition: box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease,
      border-color 0.3s ease, transform 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.2) inset; /* Improved box-shadow for a realistic feel */
  }
  
  .search-input:focus,
  .search-input:not(:placeholder-shown) {
    border-color: #677886;
    /* background: linear-gradient(to right, #a2a6a8, #f0f0f0); */
    transform: rotateX(20deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.2) inset; /* Improved box-shadow on focus */
  }
  
  .search-input:focus + .label,
  .search-input:not(:placeholder-shown) + .label {
    transform: translateY(-120%) scale(0.8);
    font-size: 12px;
    color: #4c8baf;
    text-shadow: 0 0 5px rgba(76, 135, 175, 0.6);
  }
  
  .search-input:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 0, 0, 0.2) inset; /* Improved box-shadow on hover */
    background: linear-gradient(to right, #e6e6e6, #f9f9f9);
    border-color: #999;
  }
  
  .clear-button {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  }
  
  .clear-button:hover {
    color: #4c93af;
    transform: scale(1.1);
  }
  
  .search-input:not(:focus):not(:placeholder-shown) + .clear-button {
    opacity: 1;
  }
  
  .shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0.6),
      transparent
    );
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .search-input:focus + .shine {
    opacity: 1;
  }
  
  .search-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    border-radius: 50%;
  }
  
  .search-input:focus + .search-icon {
    color: #5893ca;
    transform: translateY(-50%) scale(1.1);
    filter: drop-shadow(0 0 5px rgba(98, 146, 201, 0.6));
  }
  
  /* From Uiverse.io by MetaBlue2000 */ 
/* From Uiverse.io by andrew-demchenk0 */ 
.switch {
  --input-focus: #2d8cf0;
  --font-color: #323232;
  --font-color-sub: #666;
  --bg-color: #fff;
  --bg-color-alt: #666;
  --main-color: #323232;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 50px;
  height: 20px;
}

.toggle {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  box-sizing: border-box;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-colorcolor);
  transition: 0.3s;
}

.slider:before {
  box-sizing: border-box;
  position: absolute;
  content: "✕";
  height: 20px;
  width: 20px;
  font-size:12px;
  display:flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--main-color);
  border-radius: 5px;
  left: -2px;
  bottom: 2px;
  background-color: var(--bg-color);
  box-shadow: 0 3px 0 var(--main-color);
  transition: 0.3s;
}

.toggle:checked + .slider {
  background-color: var(--input-focus);
}

.toggle:checked + .slider:before {
  content: "\002713";
  transform: translateX(30px);
}

.check {
  cursor: pointer;
  position: relative;
  margin: auto;
  width: 18px;
  height: 18px;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
}

.check:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 50, 84, 0.03);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.check svg {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #c8ccd4;
  stroke-width: 1.5;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
}

.check svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}

.check svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}

.check:hover:before {
  opacity: 1;
}

.check:hover svg {
  stroke: rgb(60, 177, 50);
}
.cbxcontainer{
  display: flex
}
.cbxcontainer input:checked + .check svg {
  stroke: rgb(60, 177, 50);
}

.cbxcontainer input:checked + .check svg path {
  stroke-dashoffset: 60;
  transition: all 0.3s linear;
}

.cbxcontainer input:checked + .check svg polyline {
  stroke-dashoffset: 42;
  transition: all 0.2s linear;
  transition-delay: 0.15s;
}


.btn-container {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 140px;
}

.btn-container i {
  display: inline-block;
  position: relative;
  top: -9px;
}

/* label {
  font-size: 13px;
  color: #424242;
  font-weight: 500;
} */

.btn-color-mode-switch {
  display: inline-block;
  margin: 0px;
  position: relative;
  font-size: 13px;
  color: #424242;
  font-weight: 500;
  width: auto;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner {
  margin: 0px;
  width: 140px;
  height: 30px;
  background: #E0E0E0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
    /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
  display: block;
  font-size: 13px;
  color: #424242;
  font-weight: 500;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
  content: attr(data-on);
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  top: 7px;
  right: 15px;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
  content: attr(data-off);
  width: 70px;
  height: 16px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 2px;
  top: 2px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 6px -2px #111;
  padding: 5px 0px;
}

.btn-color-mode-switch > .alert {
  display: none;
  background: #FF9800;
  border: none;
  color: #fff;
}

.btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after {
  content: attr(data-on);
  left: 68px;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before {
  content: attr(data-off);
  right: auto;
  left: 15px;
}

.btn-color-mode-switch input[type="checkbox"]:checked ~ .alert {
  display: block;
}

.dark-preview {
  background: #0d0d0d;
}

.white-preview {
  background: #fff;
}

.coolinput {
  display: flex;
  flex-direction: column;
  width: fit-content;
  position: static;
  max-width: 200px;
}
.coolinput:invalid {
  color: grey;
}

.coolinput label.coolinputtext {
  font-size: 1rem;
  color: black;
  font-weight: 700;
  position: relative;
  top: 0.5rem;
  margin: 0 0 0 7px;
  padding: 0 3px;
  background: #e8e8e8;
  width: fit-content;
}

.coolinput input[type=text].coolinputinput {
  padding: 5px 5px;
  font-size: 1rem;
  border: 2px balck solid;
  border-radius: 2px;
  background: #e8e8e8;
}

.coolinput input[type=text].coolinputinput:focus {
  outline: none;
}

.jobscontainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* cool selection */
.dropdowmcontainer {
    display: flex;
    flex-direction: column;
    width: fit-content;
    position: relative;
    --dropdowndivheight: 26px;
    --dropdowndivwidth: 110px;
    width: var(--dropdowndivwidth);
    height: var(--dropdowndivheight);
    font-size: 16px;
    --content-dropdownSelection:"›";
  }
  .dropdown {
  border: 1px solid #c1c2c5;
  border-radius: 6px;
  transition: all 300ms;
  display: flex;
  flex-direction: column;
  min-height: var(--dropdowndivheight);
  background-color: white;
  overflow: hidden;
  position: absolute;
  inset-inline: auto;
  max-width: var(--dropdowndivwidth);
  min-width: var(--dropdowndivwidth);
  box-shadow:
            rgba(0, 0, 0, 0.23) 0px -4px 1px 0px inset,
            rgba(255, 255, 255, 0.17) 0px -1px 1px 0px,
            rgba(0, 0, 0, 0.17) 0px 2px 4px 1px;
  }
  .dropdownextra:hover{
      --hoverwidth: 280px;
      z-index: 200;
      --dropdowndivwidth: var(--hoverwidth);  
  }
  .dropdownextra:has(input:checked) {
    z-index: 200;
      --dropdowndivwidth: var(--hoverwidth);
  }
  .dropdown input:where(:checked) ~ .list {
  opacity: 1;
  transform: translateY(-3rem) scale(1);
  transition: all 200ms ease;
  margin-top: 32px;
  padding-top: 4px;
  margin-bottom: -50px;
  z-index: 20;
  background-color: white;
  }
  .dropdown input:where(:not(:checked)) ~ .list {
  opacity: 0;
  transform: translateY(3rem);
  margin-top: -100%;
  user-select: none;
  height: 0px;
  max-height: 0px;
  min-height: 0px;
  pointer-events: none;
  transition: all 500ms ease-out;
  }
  .trigger {
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-weight: 400;
  color: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: row;
  gap: 1rem;
  padding: 2px 5px;
  height: max-content;
  position: relative;
  z-index: 10;
  border-radius: inherit;
  background-color: white;
  }
  .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  }
  .dropdown input:where(:checked) + .trigger {
  margin-bottom: 1rem;
  }
  .dropdown input:where(:checked) + .trigger:before {
  rotate: 90deg;
  transition-delay: 0ms;
  }
  .dropdown input:where(:checked) + .trigger::after {

  }

  .trigger:before,
  .trigger::after {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .trigger:before {
  content: var(--content-dropdownSelection);
  rotate: -90deg;
  width: 10px;
  height: 10px;
  color: #262626;
  border-radius: 2px;
  font-size: 26px;
  transition: all 350ms ease;
  transition-delay: 85ms;
  }
  .trigger::after {

  }
  .list {
  height: 100%;
  max-height: 30em;
  width: calc(100% - calc(var(--w-scrollbar) / 2));
  display: grid;
  grid-auto-flow: row;
  overflow: hidden auto;
  gap: 5px;
  padding: 0 0 20px 5px;
  margin-right: -8px;
  --w-scrollbar: 8px;
  position: relative;
  z-index: 12;
  }
  .dropdownlistitem {
  height: 100%;
  width: calc(var(--dropdowndivwidth) - 22px);
  list-style: none;
  cursor: pointer;
  }
  .article {
  padding: 5px;
  border-radius: 8px;
  font-size: inherit;
  font-weight: 500;
  text-align: justify;
  width: 100%;
  border: 1px solid #c1c2c5;
  display: inline-block;
  background-color: white;
  }

  .webkit-scrollbar::-webkit-scrollbar {
  width: var(--w-scrollbar);
  height: var(--w-scrollbar);
  border-radius: 9999px;
  }
  .webkit-scrollbar::-webkit-scrollbar-track {
  background: #0000;
  }
  .webkit-scrollbar::-webkit-scrollbar-thumb {
  background: #0000;
  border-radius: 9999px;
  }
  .webkit-scrollbar:hover::-webkit-scrollbar-thumb {
  background: #c1c2c5;
  }


  /* exl upload */
.exlcontainer-btn-file {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: #307750;
  color: #fff;
  border-style: none;
  padding: 8px;
  border-radius: 0.5em;
  overflow: hidden;
  z-index: 1;
  box-shadow: 4px 8px 10px -3px rgba(0, 0, 0, 0.356);
  transition: all 250ms;
}
.exlcontainer-btn-file input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.exlcontainer-btn-file > svg {
  margin-right: 1em;
}
.exlcontainer-btn-file::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  border-radius: 0.5em;
  background-color: #469b61;
  z-index: -1;
  transition: all 350ms;
}
.exlcontainer-btn-file:hover::before {
  width: 100%;
}



/* integrated from index.htnml */
.activejob{
  border-width: 1px;
  border-style: solid;
  border-color: light-grey;
  border-radius: 2px;
  margin:6px 6px 6px 6px;
  padding-left:5px;
  padding-right:5px;
  width: 200px;
  min-width: 180;
  height: 300px;
  font-size: 16px;
  display: inline-block;
  box-shadow:  0px 5px 15px rgba(0,0,0,0.25);
  transition:0.5s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.activejob:hover{
  box-shadow:  0px 5px 15px 8px rgba(0,0,0,0.25);
  transition: 0.6s;
}
.listitem{
  margin: 0 0 0 0;
  display: inline;
  font-size: 0.95em;
}
.itemtitle{
  font-size: 18px;
  font-weight: bold;
  display:block;
  margin: 0 0 0 0;
}
.itemline{
  display: inline-block;
  width: 100%;
}
.lineinput{
  border: none;
}
.lineinputlabel{
  display: inline-block;
  margin: 0 0 5 0;
}
.jobstatus{
  display: inline-block;
  position: absolute;
  right: 33;
  top: 2;
}

.controlpanel{
  display: flex;
  flex-direction: column;
  width:0px;
  height: calc(100vh - 100px);
  margin: 0 0 0 20px;
  position: relative;
  transition: 0.5s;
}
.controlpanel_show{
  width:550px;
  max-width: 600px;
  min-width: 540px;
  transition: 0.5s;
}
.detailtitle{
  font-size: 18px;
  font-weight: bold;
  display:block;
  margin: 0;
}
.itemdetail{
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  
  overflow: auto;
}
.statusbox{
  position: absolute;
  right: 0;
  top: 0;
}

.controlbar{

  display: flex;
  width: 100%;
  
  
}
.linecontrol{
  display: block;
  width: 100%;
  margin: 5 5 5 5;
}
.flexlinecontrol{
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  position: relative;
  width: 100%;
}
.detailform{
  display: block;
  width: 100%;
}
.detaillineform{
  display: block;
  width: 100%;
  margin:0 0 0 0;
  margin-block-end: 0;
  background-color: rgba(245, 245, 245, 0.8);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(176, 176, 176, 0.25);
  border-radius: 2px;
  margin:2px 2px 2px 2px;
  padding: 5px 5px 5px 5px;
  width: 490px;
  min-width: 180;
  display: inline-block;
  box-shadow:  0px 2px 5px rgba(0,0,0,0.25);
  transition:0.5s;
  position: relative;
}
.detaillineformnoformat{
  transition: 0.3s ease;
}
.detailpargraph{
  width: 400px;
  overflow-wrap: break-word;
}
.button {
  align-items: center;
  align-self: center;
  appearance: none;
  background-color: #fcfcfd;
  border-radius: 4px;
  border-width: 0;
  box-shadow:
    rgba(45, 35, 66, 0.2) 0 2px 4px,
    rgba(45, 35, 66, 0.15) 0 7px 13px -3px,
    #d6d6e7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395a;
  cursor: pointer;
  display: inline-block;
  /* text-transform: uppercase; */
  justify-content: center;
  list-style: none;
  overflow: hidden;
  padding: 5px 8px;
  text-align: center;
  position: relative;
  text-decoration: none;
  transition:
    box-shadow 0.15s,
    transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 15px;
  font-weight:500;
  margin: 0 3px;
}

.button:focus {
  box-shadow:
    #d6d6e7 0 0 0 1.5px inset,
    rgba(45, 35, 66, 0.4) 0 2px 4px,
    rgba(45, 35, 66, 0.3) 0 7px 13px -3px,
    #d6d6e7 0 -3px 0 inset;
}

.button:hover {
  box-shadow:
    rgba(45, 35, 66, 0.3) 0 4px 8px,
    rgba(45, 35, 66, 0.2) 0 7px 13px -3px,
    #d6d6e7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.button:active {
  box-shadow: #d6d6e7 0 3px 7px inset;
  transform: translateY(2px);
}


.button:disabled {
  background-color: #f5f5f5;
  color: #a1a1a1;
  box-shadow:
    rgba(45, 35, 66, 0.2) 0 2px 4px,
    rgba(45, 35, 66, 0.15) 0 7px 13px -3px,
    #d6d6e7 0 -3px 0 inset;
  cursor: not-allowed;
} 



.input-container {
  position: relative;
  
  margin: 15 0 0 0;
  width: 100px;
}

.input-container input[type="text"] {
  font-size: 16px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 2px 0 0 0;
  background-color: transparent;
  outline: none;
}

.input-container .label {
  position: absolute;
  top: 0;
  left: 0;
  color: #524f4f;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* .input-container input[type="text"]:focus ~ .label,  */
.input-container input[type="text"]:valid ~ .label,
.input-container input[type="text"]:disabled ~ .label
{
  transform: translateY(-20px);

  font-size: 12px;
  color: #777676;
}

.input-container .underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #333;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.input-container input[type="text"]:focus ~ .underline {
  transform: scaleX(1);
}

.inventory-table-header {
  
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;
  cursor: pointer;
  position: sticky; /* Make the header sticky */
  top: 0; /* Stick to the top of the container */
  background-color: white; /* Ensure the header has a background color */
  z-index: 1;
}

.inventory-table-row {
 
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid #ffffff;
  cursor: pointer;
}
.inventory-table-row:nth-child(even) {
  background: rgb(240, 240, 240);
}
.inventory-table-row:hover {
  background: rgb(204, 206, 204);
  opacity: 1;
  transition: 0.5s;
}
.inventory-table-complex-row {
 border-bottom: 1px solid black;
 justify-content: space-between;
 align-items: center;
 padding: 10px 0;
 background: rgb(255, 255, 255);
 cursor: pointer;
}
.inventory-table-complex-row:hover {
 background: rgb(204, 206, 204);
 opacity: 1;
 transition: 0.5s;
}
.reserverdiv_inventorytablecell{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
max-width: 170px;
font-size: 0.85em;
}
.unittable-table{
  background-color: white;
}
/* .unittable-table:nth-child(even) {
  background: rgb(240, 240, 240);
} */
.unittable-table:hover {
  background: rgb(204, 206, 204);
  opacity: 1;
  transition: 0.5s;
}
.tablerownoncompleted{
  color:grey;
  opacity: 0.5;
}
table{
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.container-btn-file {

  font-family: inherit;
  border: none;
  background: hsl(0deg 0% 75%);
  box-shadow: inset -1px -1px #292929, inset 1px 1px #fff, inset -2px -2px rgb(158, 158, 158), inset 2px 2px #ffffff;
  font-size: 12px;
  letter-spacing: 0;
  padding: 3px 3px;
  transition: 0.2s;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
}
.container-btn-file input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.container-btn-file > svg {
  margin-right: 1em;
}
.container-btn-file:active {
  box-shadow: inset 1px 1px #fff, inset 1px 1px #292929, inset -2px -2px #ffffff, inset 2px 2px rgb(158, 158, 158);
  background: hsl(0, 0%, 88%);
}
.button input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}


.uploaddiv{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  height: 125px;
}
.uploadbuttonblock{
  display: block;
  justify-content: center;
  align-items: center;
  width: 100px;
}

.loginblock{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-form {
  --input-focus: #2d8cf0;
  --font-color: #323232;
  --font-color-sub: #666;
  --bg-color: #fff;
  --main-color: #323232;
  padding: 20px;
  background: lightgrey;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
}

.login-title {
  color: var(--font-color);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 25px;
}

.login-title span {
  color: var(--font-color-sub);
  font-weight: 600;
  font-size: 17px;
}

.login-input {
  width: 150px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 15px;
  font-weight: 600;
  color: var(--font-color);
  padding: 5px 10px;
  outline: none;
}

.login-input::placeholder {
  color: var(--font-color-sub);
  opacity: 0.8;
}

.login-input:focus {
  border: 2px solid var(--input-focus);
}


.login-button-confirm {
  margin: 50px auto 0 auto;
  width: 120px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 17px;
  font-weight: 600;
  color: var(--font-color);
  cursor: pointer;
}
.login-button-confirm:active {
  box-shadow: 0px 0px var(--main-color);
  transform: translate(3px, 3px);
}
.tooltip-container {
  position: relative;
  display: inline-block;
  /* margin:0; */
  /* margin: 5px 5px 10px 10px; */
}

.tooltip-text {
  color: #333;
  font-size: 18px;
  cursor: pointer;
}

.tooltip {
  position: absolute;
  width: 200px;
  top: 100%;
  left: 50%;
  font-size: 14px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  background: #0b798a;
  color: #000000;
  padding: 10px;
  border-radius: 4px;
  transition: opacity 0.3s, visibility 0.3s, top 0.3s, background 0.3s;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #0b798a transparent;
  transform: translateX(-50%);
}

.tooltip-container:hover .tooltip {
  top: 120%;
  opacity: 1;
  visibility: visible;
  background: #c2c2c2;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
  transform: translate(-50%, -5px);
}
.sumcount{
  display: inline-block;
  margin: 0px 0px 0px 5px;
}
.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pullDown {
  from { transform: translateY(-100%);
  opacity: 0; }
  to { transform: translateY(0); 
  opacity: 1; }
}
@keyframes pullUp {
  from { transform: translateY(0);
  opacity: 1; }
  to { transform: translateY(-100%); 
  opacity: 0; }
}

.tableele{
  position: relative;
}
.tableele:hover .tooltip {
  top: 120%;
  opacity: 1;
  visibility: visible;
  background: rgb(73 162 233);
  transform: translate(-50%, -5px);
  z-index: 2;
}
.inventoryreporttablediv{
  display: flex;

  flex-direction: column;
  width: 50%;
  min-width: 220px;
  max-width: 500px;
  justify-content: center;
  align-items: center;
  margin: 0px 0px 0px 0px;
}
.draggable {
  cursor: move;
}
.dragging {
  opacity: 0.5;
}

.itemblock {
display: flex;
flex-direction: column;
width: fit-content;
background-color: inherit;
position: static;
width: 100%;
transition: 0.4s;
}

.itemblock .blocktitle {
  display: flex;
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  position: relative;
  top: 0.5rem;
  margin: 0 7px 0 7px;
  padding: 0 3px;
  background: var(--main-bg-color);
  /* width: fit-content; */
  max-width: 100%;
  flex-wrap: wrap;
}

.itemblock .blockcontent {
padding: 8px 8px;
font-size: 1rem;
border: 2px #a7a7a7 solid;
border-radius: 4px;
box-shadow:  0px 2px 5px rgba(0,0,0,0.5);

/* overflow-x: auto; */
transition: 0.4s ease-out;
display: flex;

flex-wrap: wrap;
/* background: #e8e8e8; */
}
.unfolded .blockcontent {
    
}

.selectiondiv {
  display: flex;
}

.openinnewwindowicon {
  width: 22px;
  height: 22px;
  position: absolute;
  top:2px;
  right: 2px;
  z-index: 5;
} 


/* Radio inputs*/
.radio-inputs-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.radio-tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.radio-tile-group .radio-input-container {
  position: relative;
  height: 25px;
  width: 80px;
  margin: 10px;
}

.radio-tile-group .radio-input-container .radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-group .radio-input-container .radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #079ad9;
  border-radius: 5px;
  padding: 0;
  transition: transform 300ms ease;
}

.radio-tile-group .radio-input-container .icon svg {
  fill: #079ad9;
  width: 2rem;
  height: 2rem;
}

.radio-tile-group .radio-input-container .radio-tile-label {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #079ad9;
}

.radio-tile-group .radio-input-container .radio-button:checked + .radio-tile {
  background-color: #079ad9;
  border: 2px solid #079ad9;
  color: white;
  transform: scale(1.1, 1.1);
}

.radio-tile-group .radio-input-container .radio-button:checked + .radio-tile .icon svg {
  fill: white;
  background-color: #079ad9;
}

.radio-tile-group .radio-input-container .radio-button:checked + .radio-tile .radio-tile-label {
  color: white;
  background-color: #079ad9;
}


/* search box inputs */
.searchbox-input-container {
  position: relative;
  width: 200px;
  caret-color: transparent;
}

.searchbox-input {
  width: 100%;
  padding: 5px 5px 5px 35px;
  font-size: 1em;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background-color: transparent;
  transition: border-color 0.3s;
  caret-color: #079ad9;
}

.searchbox-input:focus {
  border-color: #079ad9;
}

.searchbox-input-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #079ad9;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.searchbox-input:focus + .searchbox-input-underline {
  transform: scaleX(1);
}

.searchbox-input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: rgba(108, 99, 255, 0.1);
  transition: width 0.3s;
}

.searchbox-input:focus ~ .searchbox-input-highlight {
  width: 100%;
}

.searchbox-input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  transition: color 0.3s;
}

.searchbox-input:focus ~ .searchbox-input-icon {
  color: #079ad9;
}

.searchbox-input-icon svg {
  width: 20px;
  height: 20px;
}

/* line input */
.lineinput-group {
  position: relative;
  --input-width: 200px;
  font-size: 1em;
  }

  .lineinput-input {
  font-size: 0.9em;
  padding:  5px 5px 2px 2px;
  display: block;
  width: var(--input-width);
  border: none;
  border-bottom: 1px solid lightgray;
  background: transparent;
  }

  .lineinput-input:focus {
  outline: none;
  }


  .lineinput-bar {
  position: relative;
  display: block;
  width: var(--input-width);
  }

  .lineinput-bar:before, .lineinput-bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264AE;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  }

  .lineinput-bar:before {
  left: 50%;
  }

  .lineinput-bar:after {
  right: 50%;
  }

  .lineinput-input:focus ~ .lineinput-bar:before, .lineinput-input:focus ~ .lineinput-bar:after {
  width: 50%;
  }

  .lineinput-highlight {
  position: absolute;
  height: 60%;
  width: 50px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
  }

  .lineinput-input:focus ~ .lineinput-highlight {
  animation: inputHighlighter 0.3s ease;
  }

  @keyframes inputHighlighter {
  from {
  background: #5264AE;
  }

  to {
  width: 0;
  background: transparent;
  }
  }

  


  /* new status input */
  .customCheckBoxHolder {
    margin: 0px;
    display: flex;
    width: 260px;
    flex-direction: row; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    --element_width: 60px; /* Width of each checkbox */
    --element_height: 26px; /* Height of each checkbox */
  }
  
  .customCheckBox {
    width: 100%; /* Ensures each checkbox has the same width */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.16);
    border-radius: 0px;
    color: rgba(255, 255, 255, 0.7);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 300ms;
    transition-property: color, background-color, box-shadow;
    display: flex;
    height: 26px;
    align-items: center;
    box-shadow:
      rgba(0, 0, 0, 0.15) 0px 2px 1px 0px inset,
      rgba(255, 255, 255, 0.17) 0px 1px 1px 0px;
    outline: none;
    justify-content: center;
    min-width: var(--element_width);
    height: var(--element_height);
  }
  
  .customCheckBox:hover {
    background-color: #2c2c2c;
    color: white;
    box-shadow:
      rgba(0, 0, 0, 0.23) 0px -4px 1px 0px inset,
      rgba(255, 255, 255, 0.17) 0px -1px 1px 0px,
      rgba(0, 0, 0, 0.17) 0px 2px 4px 1px;
  }
  
  .customCheckBox .inner {
    font-size: 0.85em;
    font-weight: 700;
    pointer-events: none;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 300ms;
    transition-property: transform;
    transform: translateY(0px);
  }
  
  .customCheckBox:hover .inner {
    transform: translateY(-2px);
  }
  
  .customCheckBoxWrapper {
    width: 100%; /* Ensures each wrapper takes full width of the holder */
    
  }
  
  /* Multiple Checkboxes can be chained together for a radio input */
  .customCheckBoxWrapper:first-of-type .customCheckBox {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-right: 0px;
  }
  
  .customCheckBoxWrapper:last-of-type .customCheckBox {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-left: 0px;
  }
  
  .customCheckBoxInput {
    display: none;
  }
  
  .customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox {
    /* background-color: #2d6737; */
    color: white;
    box-shadow:
      rgba(0, 0, 0, 0.23) 0px -4px 1px 0px inset,
      rgba(255, 255, 255, 0.17) 0px -1px 1px 0px,
      rgba(0, 0, 0, 0.17) 0px 2px 4px 1px;
  }
  .customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox .inner {
    transform: translateY(-2px);
  }
  
  .customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox:hover {
    /* background-color: #2c2c2c; */
    box-shadow:
      rgba(0, 0, 0, 0.26) 0px -4px 1px 0px inset,
      rgba(255, 255, 255, 0.17) 0px -1px 1px 0px,
      rgba(0, 0, 0, 0.15) 0px 3px 6px 2px;
  }
  
  .customCheckBoxWrapper .customCheckBox:hover .inner {
    transform: translateY(-2px);
  }

  .statusRadio .customCheckBoxInput:checked:nth-of-type(1) + .customCheckBoxWrapper .customCheckBox {
    background-color: #959595; /* Darker Blue */
  }
  .statusRadio .customCheckBoxInput:checked:nth-of-type(2) + .customCheckBoxWrapper .customCheckBox {
    background-color: #d7c130; /* Darker Blue */
  }
  .statusRadio .customCheckBoxInput:checked:nth-of-type(3) + .customCheckBoxWrapper .customCheckBox {
    background-color: #d7c130; /* Darker Blue */
  }
  .statusRadio .customCheckBoxInput:checked:nth-of-type(4) + .customCheckBoxWrapper .customCheckBox {
    background-color: #d7c130; /* Darker Blue */
  }
  .statusRadio .customCheckBoxInput:checked:nth-of-type(5) + .customCheckBoxWrapper .customCheckBox {
    background-color: #357abd; /* Darker Blue */
  }
  .statusRadio .customCheckBoxInput:checked:nth-of-type(6) + .customCheckBoxWrapper .customCheckBox {
    background-color: #357abd; 
  }
  .statusRadio .customCheckBoxInput:checked:nth-of-type(7) + .customCheckBoxWrapper .customCheckBox {
    background-color: #2d6737; 
  }
  /* Select the last element and set it to green */
  /* .statusRadio .customCheckBoxInput:last-child .customCheckBox {
    background-color: #2d6737; 
  } */

  /* Task Selection Colors */
  .taskRadio .customCheckBoxInput:nth-of-type(1):checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #357abd; /* Tomato */
  }
  .taskRadio .customCheckBoxInput:nth-of-type(2):checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #357abd; /* Orange */
  }
  .taskRadio .customCheckBoxInput:nth-of-type(3):checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #357abd; /* Steel Blue */
  }
  .taskRadio .customCheckBoxInput:nth-of-type(4):checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #357abd; /* Lime Green */
  }
  .taskRadio .customCheckBoxInput:nth-of-type(5):checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #357abd; /* Blue Violet */
  }
  
  /* Checkbox color */
  .checkboxbanner .customCheckBoxInput:nth-of-type(1):checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #2d6737; /* Tomato */
  }
  .checkboxbanner .customCheckBoxInput:nth-of-type(2):checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #2d6737; /* Orange */
  }
  .checkboxbanner .customCheckBoxInput:nth-of-type(3):checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #2d6737; /* Steel Blue */
  }
  .checkboxbanner .customCheckBoxInput:nth-of-type(4):checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #2d6737; /* Lime Green */
  }
  .checkboxbanner .customCheckBoxInput:nth-of-type(5):checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #2d6737; /* Blue Violet */
  }

  .redbackground .customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #d9534f; 
  }

  .yellowbackground .customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox {
    background-color: #f37725; 
  }
  
  .collapableBtn {
    --black: #000000;
    --ch-black: #141414;
    --eer-black: #1b1b1b;
    --night-rider: #2e2e2e;
    --white: #ffffff;
    --af-white: #f3f3f3;
    --ch-white: #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: var(--af-white);
  }
  
  /* plus sign */
  .collapableBtnsign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .collapableBtnsign i {
    width: 15px;
  }
  
  .collapableBtnsign i  {
    fill: var(--night-rider);
  }
  /* text */
  .collapableBtntext {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: var(--night-rider);
    font-size: 1em;
    font-weight: 600;
    white-space: nowrap;
    transition-duration: .3s;
  }
  /* hover effect on button width */
  .collapableBtn:hover {
    width: 110px;
    border-radius: 5px;
    transition-duration: .3s;
  }
  
  .collapableBtn:hover .collapableBtnsign {
    width: 25%;
    transition-duration: .3s;
    padding-left: 0px;
  }
  /* hover effect button's text */
  .collapableBtn:hover .collapableBtntext {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding-right: 10px;
  }
  /* button click effect*/
  .collapableBtn:active {
    transform: translate(2px ,2px);
  }
  
  .card {
    width: 250px;
    background: rgb(44, 44, 44);
    font-family: "Courier New", Courier, monospace;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
    height: fit-content;
  }
  
  .card__title {
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-bottom: 1px solid rgb(167, 159, 159);
    font-size: 0.95rem;
  }
  
  .card__data {
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    border-right: 1px solid rgb(203, 203, 203);
    border-left: 1px solid rgb(203, 203, 203);
    border-bottom: 1px solid rgb(203, 203, 203);
  }
  
  .card__left {
    width: 60%;
    border-right: 1px solid rgb(203, 203, 203);
  }
  
  .card__right {
    width: 40%;
    text-align: end;
  }
  
  .card__item {
    padding: 3px 0;
    height: 25px;
    background-color: white;
  }
  
  .card__left .card__item {
    padding-left: 0.8em;
  }
  
  .card__right .card__item {
    padding-right: 0.8em;
  }
  
  .card__item:nth-child(even) {
    background: rgb(234, 235, 234);
  }

  .invoicetable{
    /* border-collapse: separate; 
    border-spacing: 0 2px; */
  }
  .invoicetable tr{
    background-color: white;
    cursor: pointer;
  }
  .invoicetable tr:hover{
    background-color: rgb(238, 254, 255);
  }
.invoicetable th, .invoicetable td {
    vertical-align: middle;
    font-size: 14px;
    border: 1px solid lightgrey;
}
.invoicetable th {
    background-color: #e9ecef;
    font-weight: bold;
    text-align: center;
}
.invoicetable td {
    text-align: center;
}

.overlaywindow{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out forwards;
 
}
.overlaybody{
  background-color: #e5e5e5;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 80%;
  height: 80%;
  overflow: auto;
  display: block;
  position: relative;
}


.tab-container {
  width: 100%;
  margin: 20px auto;
  position: relative;
}

.tab-banner {
  display: flex;
  height: 40px;
}

.tab {
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  padding: 10px 30px;
  cursor: pointer;
  background-color: #d1d1d1;
  color: grey;
  margin-right: -10px;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
}

.tab:hover {
  background-color: #e0e0e0;
}

.tab.active {
  background-color: white;
  color:black;
  z-index: 3;
  font-weight: bold;
  /* Keep borders but make bottom seamless */
  border-bottom: 1px solid white;
}

.tab-content {
  border: 1px solid #ccc;
  padding: 20px;
  background-color: white;
  border-radius: 0 5px 5px 5px;
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.tabcontent {
  display: none;
}

.tabcontent.active {
  display: block;
}

.searchform{
  display: flex;
  width: 100%;
}


/* From Uiverse.io by Galahhad */ 
/* The design is inspired from the mockapi.io */

.hamburger {
  --burger-line-width: 1.125em;
  --burger-line-height: 0.125em;
  --burger-offset: 0.625em;
  --burger-bg: rgba(0, 0, 0, .15);
  --burger-color: #333;
  --burger-line-border-radius: 0.1875em;
  --burger-diameter: 2.125em;
  --burger-btn-border-radius: calc(var(--burger-diameter) / 2);
  --burger-line-transition: .3s;
  --burger-transition: all .1s ease-in-out;
  --burger-hover-scale: 1.1;
  --burger-active-scale: .95;
  --burger-enable-outline-color: var(--burger-bg);
  --burger-enable-outline-width: 0.125em;
  --burger-enable-outline-offset: var(--burger-enable-outline-width);
  --burger-overall-size: 2em;
  /* nav */
  --nav-padding-x: 0.25em;
  --nav-padding-y: 0.625em;
  --nav-border-radius: 0.375em;
  --nav-border-color: #ccc;
  --nav-border-width: 0.0625em;
  --nav-shadow-color: rgba(0, 0, 0, .2);
  --nav-shadow-width: 0 1px 5px;
  --nav-bg: #eee;
  --nav-font-family: Menlo, Roboto Mono, monospace;
  --nav-default-scale: .8;
  --nav-active-scale: 1;
  --nav-position-left: 0;
  --nav-position-right: unset;
  /* if you want to change sides just switch one property */
  /* from properties to "unset" and the other to 0 */
  /* title */
  --nav-title-size: 0.625em;
  --nav-title-color: #777;
  --nav-title-padding-x: 1rem;
  --nav-title-padding-y: 0.25em;
  /* nav button */
  --nav-button-padding-x: 1rem;
  --nav-button-padding-y: 0.375em;
  --nav-button-border-radius: 0.375em;
  --nav-button-font-size: 12px;
  --nav-button-hover-bg: #6495ed;
  --nav-button-hover-text-color: #fff;
  --nav-button-distance: 0.875em;
  /* underline */
  --underline-border-width: 0.0625em;
  --underline-border-color: #ccc;
  --underline-margin-y: 0.3125em;
}

/* popup settings 👆 */

.hamburger {
  display: inline-block;
  text-rendering: optimizeLegibility;
  position: relative;
  caret-color: transparent;
  cursor: pointer;
}

.hamburger input {
  display: none;
  caret-color: transparent;
}

.hamburger svg {
  /* The size of the SVG defines the overall size */
  height: var(--burger-overall-size);
  /* Define the transition for transforming the SVG */
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: black;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  /* Define the transition for transforming the Stroke */
  transition:
    stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.hamburger-window {
  transform: scale(var(--nav-default-scale));
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: var(--nav-padding-y) var(--nav-padding-x);
  background: var(--nav-bg);
  font-family: var(--nav-font-family);
  color: var(--nav-text-color);
  border-radius: var(--nav-border-radius);
  box-shadow: var(--nav-shadow-width) var(--nav-shadow-color);
  border: var(--nav-border-width) solid var(--nav-border-color);
  top: calc(var(--burger-diameter) + var(--burger-enable-outline-width) + var(--burger-enable-outline-offset));
  left: var(--nav-position-left);
  right: var(--nav-position-right);
  transition: var(--burger-transition);
  z-index: 15;
}

.hamburger-window legend {
  padding: var(--nav-title-padding-y) var(--nav-title-padding-x);
  margin: 0;
  color: var(--nav-title-color);
  font-size: var(--nav-title-size);
  text-transform: uppercase;
}

.hamburger-window ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.hamburger-window ul button {
  outline: none;
  width: 100%;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  color: var(--burger-color);
  font-size: var(--nav-button-font-size);
  padding: var(--nav-button-padding-y) var(--nav-button-padding-x);
  white-space: nowrap;
  border-radius: var(--nav-button-border-radius);
  cursor: pointer;
  column-gap: var(--nav-button-distance);
}

.hamburger-window ul li:nth-child(1) svg,
.hamburger-window ul li:nth-child(2) svg {
  color: cornflowerblue;
}

.hamburger-window ul li:nth-child(4) svg,
.hamburger-window ul li:nth-child(5) svg {
  color: rgb(153, 153, 153);
}

.hamburger-window ul li:nth-child(7) svg {
  color: red;
}

.hamburger-window hr {
  margin: var(--underline-margin-y) 0;
  border: none;
  border-bottom: var(--underline-border-width) solid var(--underline-border-color);
}

/* actions */

.hamburger-window ul button:hover,
.hamburger-window ul button:focus-visible,
.hamburger-window ul button:hover svg,
.hamburger-window ul button:focus-visible svg {
  color: var(--nav-button-hover-text-color);
  background: var(--nav-button-hover-bg);
}

.hamburger input:checked~nav {
  transform: scale(var(--nav-active-scale));
  visibility: visible;
  opacity: 1;
}

.notificationpopup_frame{
  position: fixed;
  display: flex;
  flex-direction: column;
  bottom: 10px;
  width: 50%;
  border-radius: 10px;
  align-self: center;
  justify-content: center;
  align-items: center;
  align-self: center;
  z-index: 900;
}
.notification-popup{
  background-color: #000000;
  padding: 10px 20px;
  margin:15px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-Height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}


.at-cursor-popup-window {
    --burger-line-width: 1.125em;
    --burger-line-height: 0.125em;
    --burger-offset: 0.625em;
    --burger-bg: rgba(0, 0, 0, .15);
    --burger-color: #333;
    --burger-line-border-radius: 0.1875em;
    --burger-diameter: 2.125em;
    --burger-btn-border-radius: calc(var(--burger-diameter) / 2);
    --burger-line-transition: .3s;
    --burger-transition: all .1s ease-in-out;
    --burger-hover-scale: 1.1;
    --burger-active-scale: .95;
    --burger-enable-outline-color: var(--burger-bg);
    --burger-enable-outline-width: 0.125em;
    --burger-enable-outline-offset: var(--burger-enable-outline-width);
    /* nav */
    --nav-padding-x: 0.25em;
    --nav-padding-y: 0.625em;
    --nav-border-radius: 0.375em;
    --nav-border-color: #ccc;
    --nav-border-width: 0.0625em;
    --nav-shadow-color: rgba(0, 0, 0, .2);
    --nav-shadow-width: 0 1px 5px;
    --nav-bg: #eee;
    --nav-font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
    --nav-default-scale: .8;
    --nav-active-scale: 1;
    --nav-position-left: unset;
    --nav-position-right: 0;
    /* if you want to change sides just switch one property */
    /* from properties to "unset" and the other to 0 */
    /* title */
    --nav-title-size: 0.625em;
    --nav-title-color: #777;
    --nav-title-padding-x: 1rem;
    --nav-title-padding-y: 0.25em;
    /* nav button */
    --nav-button-padding-x: 1rem;
    --nav-button-padding-y: 0.375em;
    --nav-button-border-radius: 0.375em;
    --nav-button-font-size: 12px;
    --nav-button-hover-bg: #6495ed;
    --nav-button-hover-text-color: #fff;
    --nav-button-distance: 0.875em;
    /* underline */
    --underline-border-width: 0.0625em;
    --underline-border-color: #ccc;
    --underline-margin-y: 0.3125em;


    /* transform: scale(var(--nav-default-scale)); */
    /* opacity: 0; */
    display: none;
    position: absolute;
    padding: 5px 10px;
    background: var(--nav-bg);
    font-family: var(--nav-font-family);
    color: var(--nav-text-color);
    border-radius: var(--nav-border-radius);
    box-shadow: var(--nav-shadow-width) var(--nav-shadow-color);
    border: var(--nav-border-width) solid var(--nav-border-color);
    /* top: -20px;
    left: -200px;
    transition: var(--burger-transition); */
    z-index: 1000;
  }
  .at-cursor-popup-window legend {
    padding: var(--nav-title-padding-y) var(--nav-title-padding-x);
    margin: 0;
    color: var(--nav-title-color);
    font-size: var(--nav-title-size);
    /* text-transform: uppercase; */
  }
  
  .at-cursor-popup-window ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    max-height: 500px;
    overflow-y: auto;
  }
  
  .at-cursor-popup-window ul button {
    outline: none;
    width: 100%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    color: var(--burger-color);
    font-size: var(--nav-button-font-size);
    padding: var(--nav-button-padding-y) var(--nav-button-padding-x);
    white-space: nowrap;
    border-radius: var(--nav-button-border-radius);
    cursor: pointer;
    column-gap: var(--nav-button-distance);
  }
  
  .at-cursor-popup-window ul li:nth-child(1) svg,
  .at-cursor-popup-window ul li:nth-child(2) svg {
    color: cornflowerblue;
  }
  
  .at-cursor-popup-window ul li:nth-child(4) svg,
  .at-cursor-popup-window ul li:nth-child(5) svg {
    color: rgb(153, 153, 153);
  }
  
  .at-cursor-popup-window ul li:nth-child(7) svg {
    color: red;
  }
  
  .at-cursor-popup-window hr {
    margin: var(--underline-margin-y) 0;
    border: none;
    border-bottom: var(--underline-border-width) solid var(--underline-border-color);
  }
  
  /* actions */
  
  .at-cursor-popup-window ul button:hover,
  .at-cursor-popup-window ul button:focus-visible,
  .at-cursor-popup-window ul button:hover svg,
  .at-cursor-popup-window ul button:focus-visible svg {
    color: var(--nav-button-hover-text-color);
    background: var(--nav-button-hover-bg);
  }



/* menu */
.menu-main > .inp {
  display: none;
}
.menu-main {
  font-weight: 600;
  color: white;
  background-color: #3b86d1;
  padding: 3px 15px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  height: 24px;
  width: 80px;
  position: relative;
  cursor: pointer;
  justify-content: space-between;

  align-self: center;
  border-radius: 4px;
  border-width: 0;
  box-shadow:
    rgba(45, 35, 66, 0.2) 0 2px 4px,
    rgba(45, 35, 66, 0.15) 0 7px 13px -3px,
    #999999 2px 2px 2px;
  transition:
    box-shadow 0.15s,
    transform 0.15s;
  white-space: nowrap;
  caret-color: transparent;
 
}

.menu-main:hover {
  box-shadow:
    rgba(45, 35, 66, 0.3) 0 4px 8px,
    rgba(45, 35, 66, 0.2) 0 7px 13px -3px,
    #999999 2px 2px 2px;
}


.arrow {
  height: 34%;
  aspect-ratio: 1;
  margin-block: auto;
  position: relative;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}

.arrow::after,
.arrow::before {
  content: "";
  position: absolute;
  background-color: white;
  height: 100%;
  width: 2.5px;
  border-radius: 500px;
  transform-origin: bottom;
}

.arrow::after {
  transform: rotate(35deg) translateX(-0.5px);
}
.arrow::before {
  transform: rotate(-35deg) translateX(0.5px);
}

.menu-main > .inp:checked + .arrow {
  transform: rotateX(180deg);
}

.menu-container {
  background-color: white;
  color: #357abd;
  border-radius: 10px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 130%;
  overflow: hidden;
  clip-path: inset(0% 0% 0% 0% round 10px);
  transition: all 0.4s;
  z-index: 20;
  box-shadow:
    rgba(45, 35, 66, 0.2) 0 2px 4px,
    rgba(45, 35, 66, 0.15) 0 7px 13px -3px,
    #797979 0 -3px 0 inset;
}

.menu-list {
  --delay: 0.1s;
  --trdelay: 0.05s;
  padding: 8px 10px;
  border-radius: inherit;
  transition: background-color 0.2s 0s;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
}

.menu-list::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 95%;
}

.menu-list:hover {
  background-color: rgb(223, 223, 223);
}

.inp:checked ~ .menu-container {
  clip-path: inset(10% 50% 90% 50% round 10px);
}

.inp:not(:checked) ~ .menu-container .menu-list {
  transform: translateY(0);
  opacity: 1;
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(1) {
  transition:
    transform 0.4s var(--delay),
    opacity 0.4s var(--delay);
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(2) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 1)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 1));
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(3) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 2)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 2));
}

.inp:not(:checked) ~ .menu-container .menu-list:nth-child(4) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 3)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 3));
}

.bar-inp {
  -webkit-appearance: none;
  display: none;
  visibility: hidden;
}

.bar {
  display: flex;
  height: 50%;
  width: 20px;
  flex-direction: column;
  gap: 3px;
}

.bar-list {
  --transform: -25%;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: white;
  transition: all 0.4s;
  position: relative;
}

.inp:not(:checked) ~ .bar > .top {
  transform-origin: top right;
  transform: translateY(var(--transform)) rotate(-45deg);
}

.inp:not(:checked) ~ .bar > .middle {
  transform: translateX(-50%);
  opacity: 0;
}

.inp:not(:checked) ~ .bar > .bottom {
  transform-origin: bottom right;
  transform: translateY(calc(var(--transform) * -1)) rotate(45deg);
}

.button-with-icon {
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0f988e;
  font-family: "Istok Web", sans-serif;
  letter-spacing: 1px;
  padding: 0 12px;
  text-align: center;
  width: 120px;
  height: 40px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: normal;
  border-radius: 3px;
  outline: none;
  user-select: none;
  cursor: pointer;
  transform: translateY(0px);
  position: relative;
  box-shadow:
    inset 0 30px 30px -15px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 0 1px 20px rgba(0, 0, 0, 0),
    0 3px 0 #0f988e,
    0 3px 2px rgba(0, 0, 0, 0.2),
    0 5px 10px rgba(0, 0, 0, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.1);
  background: #15ccbe;
  color: white;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  transition: 150ms all ease-in-out;
}

.button-with-icon:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 16px 2px -15px rgba(0, 0, 0, 0),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 20px rgba(0, 0, 0, 0.1),
    0 0 0 #0f988e,
    0 0 0 2px rgba(255, 255, 255, 0.5),
    0 0 0 rgba(0, 0, 0, 0),
    0 0 0 rgba(0, 0, 0, 0);
}



/* Arrow, From Uiverse.io by david-mohseni */ 
.animated-arrow {
  --rotateangle: 270deg;
  transform: rotate(270deg);
  cursor: pointer;
}

.animated-arrow span {
  display: block;
  width: 9px;
  height: 9px;
  border-bottom: 5px solid #357abd;
  border-right: 5px solid #357abd;
  transform: rotate(45deg);
  margin: -5px;
  animation: animate28797 2s infinite;
}

.animated-arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.animated-arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate28797 {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }

  
}

.fade-inout {
   transform:0.3s ease-in-out;
  }

.redinputplaceholder::placeholder {
    color: red;
    opacity: 1; /* Override default opacity */
  }