@import './output.css';  /* Import Tailwind's output */

/* Roboto Regular */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto'),
         local('Roboto-Regular'),
         url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff');
  }
  
  /* Roboto Medium */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Roboto Medium'),
         local('Roboto-Medium'),
         url('../fonts/roboto-medium-webfont.woff2') format('woff2'),
         url('../fonts/roboto-medium-webfont.woff') format('woff');
  }
  
  /* Roboto Bold */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Bold'),
         local('Roboto-Bold'),
         url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bold-webfont.woff') format('woff');
  }
  
  /* RobotoSlab Regular */
  @font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Roboto Slab Regular'),
         local('RobotoSlab-Regular'),
         url('../fonts/RobotoSlab-Regular.woff2') format('woff2'),
         url('../fonts/RobotoSlab-Regular.woff') format('woff');
  }
  
  /* RobotoSlab Bold */
  @font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Roboto Slab Bold'),
         local('RobotoSlab-Bold'),
         url('../fonts/RobotoSlab-Bold.woff2') format('woff2'),
         url('../fonts/RobotoSlab-Bold.woff') format('woff');
  }
 
 body {
    font-family: 'Roboto', sans-serif; 
    font-size: 16px;
    line-height: 1.6;
 }
 
 h1, h2 {
    font-family: 'Roboto Slab', serif; 
 }
.hidden {
    display: none;
}
.tab-active {
    @apply border-l border-r border-t border-b-0 bg-white;
}
.tab-inactive {
    @apply border-b;
}
input[type="text"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

input[type="text"]::-webkit-inner-spin-button {
    display: none;
}

input[type="text"] {
    -moz-appearance: textfield;
}

