@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
  li a {
    @apply underline text-blue-600 hover:text-blue-800 visited:text-purple-600
  }

  .pagy.series-nav {
    @apply flex items-center gap-1;
  }

  .pagy.series-nav a {
    @apply px-3 py-2 text-sm rounded no-underline text-gray-700 hover:bg-gray-100;
  }

  .pagy.series-nav a[aria-current="page"] {
    @apply bg-teal-700 text-white hover:bg-teal-800;
  }

  .pagy.series-nav a[aria-disabled="true"] {
    @apply text-gray-400 cursor-default hover:bg-transparent;
  }

  .pagy.series-nav a[aria-disabled="true"][aria-current="page"] {
    @apply bg-teal-700 text-white cursor-default;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
