/*
reset
*/
* {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  font-family: var(--font-family-inter);
}

*,
:after,
:before {
  box-sizing: border-box;
  flex-shrink: 0;
}

:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  cursor: default;
  line-height: 1.5;
  overflow-wrap: break-word;
  -moz-tab-size: 4;
  tab-size: 4;
}

html,
body {
  height: 100%;
  font-family: var(--font-family-inter);
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

h1:focus {
  outline: 0;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul {
  list-style: none;
}

li {
  display: inline-block;
}

.bold {
  font-weight: bold;
  font-family: var(--font-family-inter);
}

.subsection_menu {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding-top: 1rem;
}

.subsection_heading {
  padding: 1rem 0;
}

.subsection_heading_function {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section_wrapper {
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.transition {
  transition: 0;
}

.highlight {
  font-weight: bold;
  color: #ff5f1f;
}

.pointer {
  cursor: pointer;
}

.forbidden,
.not_allowed {
  cursor: not-allowed !important;
}

/* Fullscreen-classes */

.fullscreen {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh !important;
  width: 100vw !important;
  max-height: 100% !important;
  max-width: 100vw !important;
  background-color: white;
  z-index: 8100;
  margin: 0 !important;
  padding: 2rem !important;
  border-radius: 4px !important;
}

.maximize {
  height: calc(100% - 8rem) !important;
  width: 100% !important;
  max-height: 100% !important;
  max-width: 100% !important;
}

.fullscreenpadding {
  padding: 1rem !important;
}

/* Styling Svelte Tables */

.bx--data-table tr {
  background-color: white;
}

.bx--data-table a {
  color: #1c1c20 !important;
  transition: 300ms;
}

.bx--data-table a:hover {
  color: #ff5f1f !important;
  font-weight: bold;
  text-decoration: none;
}

td {
  background-color: white !important;
}

.more_filled_icon {
  border: 1px solid black;
  border-radius: 50%;
  background: white;
}

.more_filled_icon:hover {
  background: #ff5f1f;
}

.bx--side-nav__navigation {
  border-right: 1px solid #d9d9d9;
}

/* Styling Menu Styles */

/* a.bx--side-nav__link[aria-current="page"]::before,
a.bx--side-nav__link--current::before {
  background-color: #5c25fa !important;
} */

a.bx--side-nav__link[aria-current="page"]::before,
a.bx--side-nav__link--current::before {
  background-color: #ff5f1f !important;
}

.bx--side-nav__link:hover {
  background-color: #f2f2f2 !important;
}

h1:focus,
h2:focus, 
h3:focus,
h4:focus,
h5:focus,
h6:focus {
  outline: 0;
}