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

@layer components {
  h2 {
    @apply text-3xl;
  }
  h3 {
    @apply text-xl;
  }

  .error_notification {
    @apply text-sm text-rose-700;
  }

  .error {
    @apply text-sm text-rose-700;
  }

  .contact-field {
    @apply w-full border-gray-100 rounded-sm;
  }

  .pagination {
    @apply isolate inline-flex -space-x-px rounded-md shadow-sm;
  }

  .pagination a {
    @apply relative hidden items-center border border-gray-300 bg-white px-4 py-2 text-sm font-medium focus:z-20 md:inline-flex;
  }

  .page.current {
    @apply relative z-10 inline-flex items-center border border-accent-800 px-4 py-2 text-sm font-medium text-accent-800 focus:z-20;
  }

  .profile-form {
    @apply divide-y divide-gray-100;
  }

  .profile-form-field {
    @apply flex items-center justify-between py-2;
  }

  .profile-form-input {
    @apply flex-1 border-none bg-[#f8f8f8] rounded-sm;
  }

  .profile-form-label {
    @apply flex-1;
  }

  .profile-form-select {
    @apply pr-0;
  }

  .profile-form-button {
    @apply bg-accent-800 text-white rounded-full px-8 py-2 font-bold;
  }

  .check_boxes span {
  }

  .splide__slide {
    @apply h-[600px] bg-white flex justify-center items-center font-medium text-2xl
  }
}
/* line 1, app/assets/stylesheets/general.css.scss */
.flash {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
  max-width: 100%;
  width: max-content;
  padding: 0 var(--space-m);
}

/* line 16, app/assets/stylesheets/general.css.scss */
.flash__message {
  font-size: var(--font-size-s);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-m);
  background-color: var(--color-dark);
  border-radius: 999px;
}

@keyframes appear-then-fade {
  0%, 100% {
    opacity: 0;
    visibility: hidden;
  }
  5%, 60% {
    opacity: 1;
    visibility: visible;
  }
}

/* line 37, app/assets/stylesheets/general.css.scss */
.error_notification {
  color: red;
}

/* line 41, app/assets/stylesheets/general.css.scss */
.error {
  color: red;
}

/* line 46, app/assets/stylesheets/general.css.scss */
.fade-out {
  animation-duration: 5s;
  animation-name: appear-then-fade;
  animation-fill-mode: forwards;
}
/*
 * 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.
 *



 */
