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



 */
@media print {
  nav {
    display: none;
  }
  body {
    background: transparent !important;
  }
  main {
    max-width: 100% !important;
    background: transparent !important;
  }

  .print-hidden {
    display: none;
  }

  .print-smaller {
    font-size: .75rem;
  }

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


@layer base {
  html {
    @apply font-sans text-gray-700
  }
  h1, h2, h3, h4, h5 {
    @apply font-serif;
  }
}

@layer components {
  .tnow-link {
    @apply inline-flex cursor-pointer text-emerald-700 hover:text-emerald-800 underline;
  }

  .tnow-btn {
    @apply inline-flex items-center px-2.5 py-1.5 border border-transparent text-sm font-medium rounded shadow-sm text-white bg-emerald-700 hover:bg-emerald-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-emerald-500 cursor-pointer;
  }

  .tnow-btn-disabled {
    @apply tnow-btn bg-gray-300 hover:bg-gray-300 text-gray-500 cursor-not-allowed
  }

  .tnow-btn-plain {
    @apply tnow-btn bg-gray-300 hover:bg-gray-200 text-gray-800
  }

  .tnow-btn-warn {
    @apply tnow-btn bg-red-600 hover:bg-red-500 focus:ring-red-500 text-white
  }

  .tnow-btn-yellow {
    @apply tnow-btn bg-yellow-600 hover:bg-yellow-500 focus:ring-yellow-500 text-white
  }


  .tnow-btn-text {
    @apply inline-flex items-center px-2.5 py-1.5 font-medium cursor-pointer
  }

  .tnow-panel {
    @apply rounded-lg bg-gray-50 p-6 shadow-lg;
  }

  .tnow-tab {
    @apply border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-lg;
  }

  .tnow-tab-active {
    @apply border-emerald-700 text-emerald-700 whitespace-nowrap py-4 px-1 border-b-2 font-bold text-lg;
  }

  .calculator-box {
    @apply shadow rounded-lg text-center p-4 overflow-hidden;
  }

  .tnow-table-header-cell {
    @apply align-bottom font-bold px-6 py-3 text-gray-700 text-left text-xs uppercase;
  }

  .tnow-table-body-cell {
    @apply px-6 py-4 text-gray-700 text-left text-sm;
  }
}

@layer utilities {
  .heroicon-full svg {
    width: 100% !important;
    height: 100% !important;
  }
  .heroicon-full svg path {
    stroke-width: 1 !important;
  }
}
