@import 'tailwindcss';
@import './component-styles.css';
@plugin "@tailwindcss/forms";
@plugin "@tailwindcss/typography";
@custom-variant dark (&:where(.dark, .dark *));

@source '../../../../../app/Filament/**/*.php';
@source '../../../../../resources/views/filament/**/*.blade.php';
@source '../../../../../vendor/filament/**/*.blade.php';
@source '../../../../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../../../../resources/views/**/*.blade.php';
@source '../../../../../resources/views/components/**/*.blade.php';
@source '../../../../../resources/views/components/blade.php';
@source '../../../../../wave/resources/views/**/*.blade.php';
@source '../../../../../resources/themes/anchor/**/*.blade.php';
@source '../../../../../resources/plugins/**/*.php';
@source '../../../../../config/*.php';


[x-cloak]{
  display:none;
}

.wave {
  animation: wave 3s linear;
  animation-iteration-count:infinite;
  fill: #4e80ee;
}

  #wave2 {
    animation-duration:5s;
    animation-direction: reverse;
    opacity: .6
  }
  #wave3 {
    animation-duration: 7s;
    opacity:.3;
  }
  @keyframes drop {
    0% {
      transform: translateY(80%);
      opacity:.6;
    }
    80% {
      transform: translateY(80%);
      opacity:.6;
    }
    90% {
      transform: translateY(10%) ;
      opacity:.6;
    }
    100% {
      transform: translateY(0%) scale(1.5);
      stroke-width:0.2;
      opacity:0;
    }
  }
  @keyframes wave {
    to {transform: translateX(-100%);}
  }

  .form-control{
    @apply w-full form-input;
  }

/****** Form Input CLASSES **********/



.form-select{
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right .5rem center;
    background-size: 1.5em 1.5em;
    padding:.5rem 2.5rem .5rem .75rem;
    background-repeat: no-repeat;
}

.prose {
  blockquote{
    @apply py-3 border-l-4 bg-zinc-100 border-zinc-300;
  }
}

html, body{
  p{
    @apply text-gray-500 dark:text-gray-400;
  }
}

.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

/* For IE, Edge and Firefox */
.scrollbar-hidden {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

:root {
  /* Use a proper primary scale to keep good contrast for Filament components */
  --primary-50:  #f8fafc;  /* slate-50 */
  --primary-100: #f1f5f9;  /* slate-100 */
  --primary-200: #e2e8f0;  /* slate-200 */
  --primary-300: #cbd5e1;  /* slate-300 */
  --primary-400: #94a3b8;  /* slate-400 */
  --primary-500: #64748b;  /* slate-500 */
  --primary-600: #475569;  /* slate-600 */
  --primary-700: #334155;  /* slate-700 */
  --primary-800: #1f2937;  /* slate-800 */
  --primary-900: #0f172a;  /* slate-900 */
  --primary-950: #020617;  /* slate-950 */
}

/** The following are CSS files needed by Filament for components, table builder, etc. 
https://github.com/filamentphp/filament/blob/4.x/docs/01-introduction/02-installation.md#configuring-styles
**/

/* Required by all components */
@import '../../../../../vendor/filament/support/resources/css/index.css';

/* Required by actions and tables */
@import '../../../../../vendor/filament/actions/resources/css/index.css';

/* Required by actions, forms and tables */
@import '../../../../../vendor/filament/forms/resources/css/index.css';

/* Required by actions and infolists */
@import '../../../../../vendor/filament/infolists/resources/css/index.css';

/* Required by notifications */
@import '../../../../../vendor/filament/notifications/resources/css/index.css';

/* Required by actions, infolists, forms, schemas and tables */
@import '../../../../../vendor/filament/schemas/resources/css/index.css';

/* Required by tables */
@import '../../../../../vendor/filament/tables/resources/css/index.css';

/* Required by widgets */
@import '../../../../../vendor/filament/widgets/resources/css/index.css';

@import './assistant.css';
