body {
    background-color: #f2f0ef;
    font-family: 'Lato', Arial, sans-serif;
    margin: 0;
    padding: 20px;
    height: 100vh;
    overflow: hidden;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #8c8c8c;
  overflow: hidden; 
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #f2f0ef;
}

body::-webkit-scrollbar-thumb {
  background: #f2f0ef;
}

.toast-melding-positive {
  position: fixed;
  bottom: 32px;
  left: 32px;
  background: #216e00;
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(30,42,78,0.15);
  z-index: 99999999;
  opacity: 0;
  transition: opacity 0.3s;
}

.toast-melding-negative {
  position: fixed;
  bottom: 32px;
  left: 32px;
  background: #C70000;
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(30,42,78,0.15);
  z-index: 99999999;
  opacity: 0;
  transition: opacity 0.3s;
}

.toast-melding-general {
  position: fixed;
  bottom: 32px;
  left: 32px;
  background: #fff;
  color: #1e2a4e;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(30,42,78,0.15);
  z-index: 99999999;
  opacity: 0;
  transition: opacity 0.3s;
}
