/**
 * Don't edit this file. Find all style at ./sass folder.
 **/
.daisy-accordion {
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
}

.daisy-accordion__block-title {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 1rem 3rem 1rem 1.5rem;
  background-color: #f8fafc;
  font-weight: 600;
  transition: all 0.2s ease;
}

.daisy-accordion__block-title * {
  margin-bottom: 0 !important;
}

.daisy-accordion__block-title::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f078"; /* fa-chevron-down */
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
}

/* Rotate chevron when expanded */
.daisy-accordion.is-expanded .daisy-accordion__block-title::after {
  transform: translateY(-50%) rotate(180deg);
}

.daisy-accordion__block-title:hover {
  background-color: #f1f5f9;
}

.daisy-accordion__block-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.daisy-accordion.is-expanded .daisy-accordion__block-content {
  padding: 1.5rem;
  max-height: 1000px;
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */