html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  &::-webkit-scrollbar {
    width: 15px;
    height: 15px;
  }

  &::-webkit-scrollbar-thumb {
    background: #c3d1df;
    border: 5px solid white;
    border-radius: 4px;
  }

  &::-webkit-scrollbar-track {
    background: white;
  }
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  width: 100%;
  height: 100% !important;

  &::-webkit-scrollbar {
    width: 15px;
    height: 15px;
  }

  &::-webkit-scrollbar-thumb {
    background: #c3d1df;
    border: 5px solid #e1e8f0;
    border-radius: 4px;
  }

  &::-webkit-scrollbar-track {
    background: #f1f2f4;
  }
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 12px;
  height: 100%;
}

iframe {
  border: 0px;
}
/*$vite$:1*/