/* Pas alle primary kleuren aan */
:root {
    --bs-primary: #339ac8;
}

/* Specifiek voor buttons, inclusief hover/focus/active */
.btn-primary {
    background-color: #339ac8;
    border-color: #339ac8;
    color: #fff; /* tekstkleur wit */
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: #2a86b0; /* iets donkerder voor hover/focus */
    border-color: #2a86b0;
    color: #fff;
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #339ac8;
    border-color: #339ac8;
    color: #fff;
    opacity: 0.65; /* standaard disabled look */
}

body {
    font-family: 'neuzeit-grotesk', Arial, sans-serif; 
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

html {
  height: -webkit-fill-available;
}

/*main {
  height: 100vh;
  height: -webkit-fill-available;
  max-height: calc(100vh - 56px);
  overflow-x: auto;
  overflow-y: hidden;
}*/

.dropdown-toggle { outline: 0; }

.btn-toggle {
  padding: .25rem .5rem;
  font-weight: 600;
  color: var(--bs-emphasis-color);
  background-color: transparent;
}
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(var(--bs-emphasis-color-rgb), .85);
  background-color: var(--bs-tertiary-bg);
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

.list-group div > .btn {
  margin: .25rem .125rem;
}

[data-bs-theme="dark"] .btn-toggle::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%28255,255,255,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(var(--bs-emphasis-color-rgb), .85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: var(--bs-tertiary-bg);
}

.scrollarea {
  overflow-y: auto;
}

html,
body {
  height: 100%;
}

body.page-login {
}

.row-signin-form {
    padding: 20vh 20px 20vh 20px;
    background: #39AEDF;
    background: linear-gradient(180deg,rgba(57, 174, 223, 1) 0%, rgba(152, 183, 104, 1) 100%);
}

.row-info-login {
    background: #fff;
    padding: 50px 20px 20px;
}

.form-signin {
  background: #fff;
  max-width: 400px;
  padding: 1rem;
  margin: 0px 20px 0px auto;
  border: 0px;
  border-radius: 10px;
}
.form-signin.form-reset-password {
  max-width: 430px;
  margin: 0px auto;
}

.form-signin .form-field {
  display: block;
  margin-bottom: 10px;
}

.form-signin  .form-field input[type=text] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin  .form-field label {
    font-size: 0.8em;
    color: #999;
}

.form-signin .form-field input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#alphaBox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

  #alphaBox .bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }

  #alphaBox .innerBox {
      position: absolute;
      width: 80vw;
      height: 80vh;
      background: white;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  }

  #alphaBox .innerBox .content {
      position: relative;
      width: 100%;
      height: 100%;
      overflow-y: scroll;
  }

  #alphaBox .innerBox .content .inner {
      padding: 1.0em;
      box-sizing: border-box;
  }

  #alphaBox .innerBox .content .status:after {
      font-family: bootstrap-icons !important;
      display: inline-block;
  }

  #alphaBox .innerBox .content .status.active:after {
      content: "\F116";
      color: #000;
      -webkit-animation: spinner-border .75s linear infinite;
      animation: spinner-border .75s linear infinite;
  }

  #alphaBox .innerBox .content .status.done:after {
      content: "\F26A";
      color: green;
  }


