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

@layer components {
  /* .page-section-indented {
    @apply px-4;
  } */
  .card {
    @apply p-4 bg-white shadow;
  }
  .text-link {
    @apply text-sky-700;
  }
  .btn {
    @apply rounded-sm hover:opacity-50;
  }
  .btn-md {
    @apply px-3 py-1 btn;
  }
  .btn-sm {
    @apply btn py-0.5 px-2 text-sm;
  }
  .btn-color-primary {
    @apply text-white bg-sky-700;
  }
  .btn-color-secondary {
    @apply text-white bg-stone-400;
  }
  .btn-color-danger {
    @apply text-white bg-red-400
  }
  .form-control {
    @apply rounded-md border border-slate-300 block
  }
  .form-control-full {
    @apply form-control w-full
  }
  .text-primary {
    @apply text-gray-700;
  }
  .text-secondary {
    @apply text-gray-500;
  }
  .hover-standard {
    @apply hover:opacity-50;
  }
}
/*
 * 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.
 *


 */
