/*@import './_pagy.tailwind.css';*/

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

@layer base {
  @font-face {
    font-family: "Bricolage Grotesque";
    src: url(/fonts/BricolageGrotesque-VariableFont_opsz,wdth,wght.ttf);
  }

  @font-face {
    font-family: "Truculenta";
    src: url(/fonts/Truculenta-VariableFont_opsz,wdth,wght.ttf);
  }

  @font-face {
    font-family: "Varela Round";
    src: url(/fonts/VarelaRound-Regular.ttf);
  }
  
  @font-face {
    font-family: "Nunito";
    src: url(/fonts/Nunito-VariableFont_wght.ttf);
    font-style: normal;
  }

  @font-face {
    font-family: "Nunito";
    src: url(/fonts/Nunito-Italic-VariableFont_wght.ttf);
    font-style: italic;
  }

  @font-face {
    font-family: "Nunito Sans";
    src: url(/fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf);
    font-style: normal;
  }

  @font-face {
    font-family: "Nunito Sans";
    src: url(/fonts/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf);
    font-style: italic;
  }

  body {
    @apply text-wi-grey-900 font-nunitosans;
  }
  h1 {
    @apply text-3xl font-bold mb-10 mt-10;
  }
  h2 {
    @apply text-xl font-bold mb-5 mt-5;
  }

  h3 {
    @apply text-lg font-bold mb-5 mt-5;
  }
}

.pagy {
  @apply flex space-x-1 font-semibold text-sm text-gray-500;
  a:not(.gap) {
    @apply block rounded-lg px-3 py-1 bg-gray-200;
    &:hover {
      @apply bg-gray-300;
    }
    &:not([href]) { /* disabled links */
      @apply text-gray-300 bg-gray-100 cursor-default;
    }
    &.current {
      @apply text-white bg-gray-400;
    }
  }
  label {
    @apply inline-block whitespace-nowrap bg-gray-200 rounded-lg px-3 py-0.5;
    input {
      @apply bg-gray-100 border-none rounded-md;
    }
  }
}
.simple-calendar {
  table {
    -webkit-border-horizontal-spacing: 0px;
    -webkit-border-vertical-spacing: 0px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(221, 221, 221);
    border-collapse: collapse;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }

  tr {
    border-collapse: collapse;
  }

  th {
    padding: 6px;
    border-bottom: 2px solid rgb(221, 221, 221);
    border-collapse: collapse;
    border-left: 1px solid rgb(221, 221, 221);
    border-right: 1px solid rgb(221, 221, 221);
    border-top: 0px none rgb(51, 51, 51);
    box-sizing: border-box;
    text-align: left;
  }

  td {
    padding: 0px;
    vertical-align: top;
    width: 14%;

    border: 1px solid #ddd;
    border-top-color: rgb(221, 221, 221);
    border-top-style: solid;
    border-top-width: 1px;
    border-right-color: rgb(221, 221, 221);
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-color: rgb(221, 221, 221);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-color: rgb(221, 221, 221);
    border-left-style: solid;
    border-left-width: 1px;
  }

  .calendar-heading nav {
    display: inline-block;
  }

  .day {
    height: 80px;
  }

  .wday-0 {}
  .wday-1 {}
  .wday-2 {}
  .wday-3 {}
  .wday-4 {}
  .wday-5 {}
  .wday-6 {}

  .today {
    background: #FFFFC0
  }

  .past {}
  .future {}

  .start-date {}

  .prev-month {
    background: #DDD;
  }
  .next-month {
    background: #DDD;
  }
  .current-month {}

  .has-events {}
}
/*
 * 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.
 *


 */
