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

@layer base {
  h1 {
    @apply text-3xl font-bold mb-6 text-center text-gray-800;
  }
  .my-container {
    @apply mx-auto px-4 pt-10 pb-10 sm:px-6 lg:px-8 max-w-screen-md;
  }
}

@layer components {
  .card-body {
    @apply text-gray-800 leading-relaxed space-y-3;
  }

  .section-title {
    @apply text-2xl font-bold text-gray-800 mb-4 pb-2 border-b-2;
  }

  .form-label {
    @apply block text-gray-700 font-medium mb-1;
  }

  .subsection-title {
    @apply text-xl font-semibold mb-3;
  }

  .list-styled {
    @apply list-disc list-inside ml-4 space-y-2;
  }

  .card-blue {
    @apply p-6 border-t-4 border-blue-500 rounded-lg shadow-xl;
  }

  .card-green {
    @apply p-6 border-t-4 border-green-500 rounded-lg shadow-xl;
  }

  .modal-card {
    @apply bg-white p-8 rounded-lg shadow-lg w-96 max-w-sm;
  }
}
/*
 * 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.
 *


 */
