/*!
 * Dark Mode Switch v1.0.1 (https://github.com/coliff/dark-mode-switch)
 * Copyright 2021 C.Oliff
 * Licensed under MIT (https://github.com/coliff/dark-mode-switch/blob/main/LICENSE)
 */

[data-bs-theme="dark"] {
  /* background-color: #212529 !important; */
  color: #eee;
}

[data-bs-theme="dark"] .bg-black {
  background-color: #fff !important;
}

[data-bs-theme="dark"] .bg-dark {
  background-color: #eee !important;
}

[data-bs-theme="dark"] .bg-light {
  background-color: #222 !important;
}

[data-bs-theme="dark"] .bg-white {
  background-color: #000 !important;
}

[data-bs-theme="dark"] a.nav-link {
    color: #FFFFFF !important;
}

[data-bs-theme="dark"] p.navbar-text {
    color: #FFFFFF !important;
}

[data-bs-theme="dark"] input.delete {
  color: #FFFFFF !important;
  background-color: #1B6EC2 !important;
}

[data-bs-theme="dark"] a.btn.btn-default {
  color: #FFFFFF !important;
}

[data-bs-theme="dark"] a.navbar-brand {
  color: #FFFFFF !important;
}

[data-bs-theme="dark"] input.btn.btn-default {
  color: #FFFFFF !important;
}

[data-bs-theme="dark"] span.nav-link {
  color: #FFFFFF !important;
}

[data-bs-theme="dark"] .navbar-toggler-icon {
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; 
}

[data-bs-theme="dark"] input.form-control:disabled {
  background: #aca7a7;
}

[data-bs-theme="dark"] .btn-close {
  filter: invert(1) grayscale(100%) brightness(300%);
  opacity: 0.85;
}

[data-bs-theme="dark"] .btn-close:hover {
  opacity: 1;
}