@import "tailwindcss";

/* Minimal smooth dropdown for Important Notes */
.important-notes-dropdown {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  border-radius: 1rem;
  background: transparent;
  box-shadow: none;
  transition: box-shadow 0.2s;
}
.important-notes-toggle {
  width: 100%;
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, #fde047 0%, #ec4899 50%, #a21caf 100%);
  background-clip: text;
  color: transparent;
  font-size: 2.25rem;
  font-weight: 800;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.04);
  outline: none;
  border: none;
  transition: box-shadow 0.2s, background 0.2s;
  user-select: none;
}
.important-notes-toggle:focus-visible,
.important-notes-toggle:hover {
  box-shadow: 0 0 0 3px #fde04755;
}
.important-notes-chevron {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.important-notes-dropdown.open .important-notes-chevron {
  transform: rotate(180deg);
}
.important-notes-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  will-change: max-height, opacity;
}
.important-notes-dropdown.open .important-notes-content {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}
