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

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-pink-200;
  }
}

*/

.days > input:checked + label {
  @apply bg-pink-500;
  @apply text-white;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="checkbox"],
input[type="datetime-local"],
input[type="time"],
select,
textarea,
.select {
  @apply min-w-0;
  @apply flex-auto;
  @apply appearance-none;
  @apply rounded;
  @apply border;
  @apply border-zinc-900/10;
  @apply bg-white;
  @apply px-3;
  @apply py-3;
  @apply shadow-sm;
  @apply shadow-zinc-800/5;
  @apply placeholder:text-zinc-400;
  @apply focus:border-pink-500;
  @apply focus:outline-none;
  @apply focus:ring-4;
  @apply focus:ring-pink-500/10;
  @apply sm:text-sm;
}

label, .label {
  @apply inline-block;
  @apply text-pink-600;
  @apply text-sm;
  @apply font-bold;
}

.button {
  @apply pointer-events-auto;
  @apply cursor-pointer;
  @apply relative;
  @apply rounded;
  @apply bg-white;
  @apply text-xs;
  @apply text-center;
  @apply font-medium;
  @apply leading-5;
  @apply text-slate-700;
  @apply shadow-sm;
  @apply ring-1;
  @apply ring-slate-700/10;
  @apply hover:bg-slate-50;
  @apply hover:text-slate-900;
  @apply py-2;
  @apply px-3;
}

.button--primary {
  @apply button;
  @apply text-white;
  @apply hover:text-slate-200;
  @apply bg-pink-600;
  @apply hover:bg-pink-700;
  @apply ring-pink-700/10;

  @apply disabled:bg-slate-100;
  @apply disabled:text-slate-300;
  @apply disabled:cursor-not-allowed;
}

.modal {
  @apply fixed;
  @apply top-0;
  @apply left-0;
  @apply right-0;
  @apply bottom-0;
  @apply z-50;
  @apply overflow-y-scroll;
  @apply items-center;
  @apply justify-center;
  @apply bg-black;
  @apply bg-opacity-70;
}
/*
 * 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.
 *


 */
