/*
 * 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.


 */
@font-face {
  font-family: 'crimson-pro';
  font-style: normal;
  font-weight: 400;
  src: url(/assets/CrimsonPro-Regular-1690b804d4ffc4ac98c424aa5428a71c9b44ec93fc537dacac105fcc00b6cfc5.ttf) format("truetype");
}

/* line 22, app/assets/stylesheets/application.css.scss */
.forkkari-logo-text {
  font-family: 'crimson-pro';
  font-weight: 400;
}
@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/* line 1, app/assets/stylesheets/components/alert.scss */
.testclass {
  border: 1px solid red;
}
/* file upload button */
/* line 2, app/assets/stylesheets/components/file_selector_btn.scss */
input[type="file"]::file-selector-button {
  border-radius: 4px;
  padding: 4px 16px;
  /* height: 40px; */
  cursor: pointer;
  background-color: #fbfbfb;
  color: #575757;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
  margin-left: 5px;
  margin-right: 10px;
  transition: background-color 200ms;
}

/* file upload button hover state */
/* line 17, app/assets/stylesheets/components/file_selector_btn.scss */
input[type="file"]::file-selector-button:hover {
  background-color: #f3f4f6;
}

/* file upload button active state */
/* line 22, app/assets/stylesheets/components/file_selector_btn.scss */
input[type="file"]::file-selector-button:active {
  background-color: #e5e7eb;
}
