/* Custom styles for the iApply Basic Landing Page.  These rules complement the Tailwind
 * utility classes and provide a bit of glassmorphism look and feel.  You can further
 * customize this file or merge these styles into your WordPress theme’s stylesheet. */

/* Ensure details summary caret is styled nicely */
details summary {
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: '▾';
  float: right;
  transition: transform 0.2s;
}

details[open] summary::after {
  transform: rotate(180deg);
}

/* Fine tune link hover colors inside dark backgrounds */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}