:root {
  --surface-0: hsl(0, 0%, 90%);
  --surface-1: hsl(0, 0%, 100%);
  --surface-2: hsl(240, 11%, 96%);
  --text-main: hsl(0, 3%, 12%);
  --text-muted: hsl(240, 2%, 44%);
  --border: hsl(240, 0%, 85%);
  --shadow-s: inset 0 1px 0 #ffffff, 0 1px 2px #0000001a, 0 2px 4px #0000000d;
  --shadow-m: inset 0 1px 0 #ffffff, 0 2px 4px #0000001a, 0 4px 8px #0000000d;
  --shadow-l: inset 0 1px 0 #ffffff, 0 4px 8px #0000001a, 0 8px 16px #0000000d;
  --primary: hsl(183 52% 57%);
}

body.dark-mode {
  --surface-0: hsl(0, 0%, 5%);
  --surface-1: hsl(0, 0%, 10%);
  --surface-2: hsl(0, 0%, 15%);
  --text-main: hsl(0, 0%, 95%);
  --text-muted: hsl(0, 0%, 60%);
  --border: hsl(0, 0%, 20%);
  --shadow-s: inset 0 1px 1px #ffffff30, 0 1px 2px #00000030, 0 2px 4px #00000015;
  --shadow-m: inset 0 1px 1px #ffffff50, 0 2px 4px #00000030, 0 4px 8px #00000015;
  --shadow-l: inset 0 1px 1px #ffffff70, 0 4px 6px #00000030, 0 6px 10px #00000015;
  --primary: hsl(183 52% 57%);
}

body {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  background-color: var(--surface-0) !important;
}

input::placeholder {
  color: var(--text-muted) !important;
}

.form-control:focus, .form-select:focus {
  border-color: var(--bs-primary) !important;
}

.text-main {
  color: var(--text-main);
}

.shadow-s {
  box-shadow: var(--shadow-s) !important;
}

.shadow-m {
  box-shadow: var(--shadow-m) !important;
}

.shadow-l {
  box-shadow: var(--shadow-l) !important;
}

.surface-0 {
  background-color: var(--surface-0) !important;
}

.surface-1 {
  background-color: var(--surface-1) !important;
}

.surface-2 {
  background-color: var(--surface-2) !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main)!important;
  line-height: 1.5;
  overflow-wrap: break-word;
}

p {
  color: var(--text-muted) !important;
  line-height: 1.5;
  font-size: 0.75rem;
}

.icon-sidebar:hover {
  border-radius: 20%;
  background-color: var(--surface-2);
}

.selected-item.active {
  border-color: var(--bs-primary);
  border-style: solid;
  border-radius: 5px;
}

.selected-item {
  padding: 15px;
}

.selected-item:hover {
  border-color: var(--bs-primary);
  border-style: solid;
  border-radius: 5px;
}

.primary {
  background-color: var(--primary);
}

.selected-item.active img {
  background-color: var(--surface-1) !important;
}

.selected-item img {
  background-color: var(--surface-1);
}

.selected-item:hover img {
  background-color: var(--surface-1)!important;
}

.container-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

#report-container {
  width: 100%;
  height: 100vh;
  height: 600px;
}

