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


@layer components {
  .link {
    @apply text-sm font-medium;
  }

  .link-primary {
    @apply underline underline-offset-4 hover:no-underline text-slate-700 dark:text-slate-200;
  }

  .link-secondary {
    @apply no-underline text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200;
  }

  .input-text {
    @apply text-sm rounded-md border border-gray-200 h-9 px-4 py-2 text-slate-700 w-full md:w-[320px];
  }

  .label {
    @apply text-sm font-semibold text-slate-700 dark:text-slate-200;
  }

  .button {
    @apply text-sm rounded-md px-4 py-2 shadow-sm h-9;
  }

  .button:hover {
    @apply cursor-pointer;
  }

  .button:disabled {
    @apply bg-gray-300 text-gray-500 cursor-not-allowed;
  }

  .button-primary {
    @apply bg-blue-700 hover:bg-blue-800 text-white;
  }

  .button-secondary {
    @apply bg-gray-200 text-gray-700;
  }

  .button-secondary:hover {
    @apply bg-gray-300 cursor-pointer;
  }

  .nav-link {
    @apply inline-flex items-center whitespace-nowrap rounded-md text-sm font-medium transition-colors h-9 px-4 py-2 hover:underline justify-start;
  }

  .nav-link-active {
    @apply bg-gray-100 text-gray-700 hover:no-underline;
  }

  .hint {
    @apply text-xs text-gray-500 dark:text-gray-400;
  }
}

/* line 2, app/assets/stylesheets/article.scss */
.article-preview p {
  margin-bottom: 1rem;
}
/*
 * 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.
 *



 */
