#accordion-image-browser-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
  box-shadow: 'none';
  color: '#4154f1'
}

html {
  font-family: "Nunito !important", sans-serif;
}

*:focus {
  outline: none; /* Remove the outline */
  box-shadow: none; /* Remove any box shadow (optional) */
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Nunito:ital,wght@0,100..900;1,100..900&display=swap');

/* Base font for body text, including span and a elements */
body, span, a {
  font-family: Nunito, sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Nunito, sans-serif;
  font-weight: 500; /* Semi-bold for headings */
}

button, .btn {
  font-family: Nunito, sans-serif;
  font-weight: 700; /* Bold for buttons */
}

nav a {
  font-family: Nunito, sans-serif;
  font-weight: 500; /* Medium for navigation links */
}

p, ul, ol, blockquote {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}
small, .caption, .disclaimer {
  font-family: Open Sans, sans-serif;
  font-weight: 300; /* Light for secondary text */
}

.accordion .card .card-body {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

input, label, select, textarea {
  font-family: Open Sans, sans-serif; /* Example using Open Sans */
  font-weight: 300; /* Example using lighter weight */
}

summary {
  font-family: Nunito, sans-serif;
  font-weight: 500;
}
  summary span {
    font-family: Nunito, sans-serif;
    font-weight:300;
    font-size: medium;
  }

detail {
  font-family: Open Sans, sans-serif;
  font-weight: 400;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 15px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

table {
  font-family: 'Nunito'
}

table tbody tr:hover td {
  font-weight: 600;
}

