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

.pagy {
  @apply flex space-x-1 py-2 text-sm font-medium text-gray-500;
  a:not(.gap) {
    @apply block border border-gray-300 bg-white px-4 py-2;
    &:hover {
      @apply bg-gray-50;
    }
    &:not([href]) {
      /* disabled links */
      @apply bg-slate-100 cursor-default;
    }
    &.current {
      @apply border-indigo-500 bg-indigo-50 text-indigo-600;
    }
  }
  .gap {
    @apply block bg-white px-4 py-2;
  }
  label {
    @apply inline-block whitespace-nowrap bg-white px-3 py-0.5;
    input {
      @apply bg-white border-none rounded-md;
    }
  }
}

/* Tooltip Component Styles */
.tooltip-content {
  @apply absolute z-50 max-w-xs;
  pointer-events: none;
}

.tooltip-body {
  @apply px-3 py-2 text-xs text-white bg-gray-900 rounded-lg shadow-lg;
  word-wrap: break-word;
  white-space: normal;
}

.tooltip-arrow {
  @apply absolute w-2 h-2 bg-gray-900 transform rotate-45;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .tooltip-content {
    @apply max-w-48;
  }

  .tooltip-body {
    @apply text-xs px-2 py-1;
  }
}
/*
 * 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: 'Gilroy-medium';
  src: url(https://elev8.verticalcity.com/../Gilroy-Medium.otf) format('otf');
  font-weight: normal;
  font-style: normal;
 }

body {
  font-family: 'Fira Sans', sans-serif;
}

 header {
  font-family: 'Gilroy-medium', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family:'Gilroy-medium', 'sans-serif';
}

a, button, input[type=submit] {
  font-family: 'Gilroy-medium', 'sans-serif';
}

