/* assets/styles.css */

/*
  A modern, clean stylesheet using TailwindCSS principles for a polished look.
  This is a static CSS file, not using the actual Tailwind framework.
*/

:root {
  --font-inter: 'Inter', sans-serif;
  --color-blue-600: #2563eb;
  --color-blue-700: #1d4ed8;
  --color-blue-500: #3b82f6;
  --color-green-600: #16a34a;
  --color-green-700: #15803d;
  --color-green-500: #22c55e;
  --color-red-600: #dc2626;
  --color-red-700: #b91c1c;
  --color-indigo-600: #4f46e5;
  --color-indigo-700: #4338ca;
  --color-indigo-500: #6366f1;
  --color-light-sky-blue: #e0f2fe; /* Light sky blue color */
  --color-gray-200: #e5e7eb;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
}

body {
  font-family: var(--font-inter);
  background-color: var(--color-light-sky-blue);
}

/* Base styles for HTML elements */
.font-sans {
  font-family: var(--font-inter);
}

.bg-gray-100 {
  background-color: var(--color-light-sky-blue);
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.p-4 {
  padding: 1rem;
}

.sm\:p-6 {
  padding: 1.5rem;
}

.w-full {
  width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.bg-white {
  background-color: #fff;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.border {
  border-width: 1px;
}

.border-gray-200 {
  border-color: var(--color-gray-200);
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.font-extrabold {
  font-weight: 800;
}

.text-gray-900 {
  color: var(--color-gray-900);
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.block {
  display: block;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-medium {
  font-weight: 500;
}

.text-gray-700 {
  color: var(--color-gray-700);
}

.mt-1 {
  margin-top: 0.25rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.w-full {
  width: 100%;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.text-white {
  color: #fff;
}

.font-semibold {
  font-weight: 600;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px;
}

.focus\:ring-offset-2:focus {
  box-shadow: 0 0 0 2px;
}

.mt-6 {
  margin-top: 1.5rem;
}

.text-gray-600 {
  color: var(--color-gray-600);
}

.text-blue-600 {
  color: var(--color-blue-600);
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.bg-blue-600 {
  background-color: var(--color-blue-600);
}

.hover\:bg-blue-700:hover {
  background-color: var(--color-blue-700);
}

.focus\:ring-blue-500:focus {
  --tw-ring-color: var(--color-blue-500);
}

.bg-green-600 {
  background-color: var(--color-green-600);
}

.hover\:bg-green-700:hover {
  background-color: var(--color-green-700);
}

.focus\:ring-green-500:focus {
  --tw-ring-color: var(--color-green-500);
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-gray-800 {
  color: var(--color-gray-800);
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.bg-red-600 {
  background-color: var(--color-red-600);
}

.hover\:bg-red-700:hover {
  background-color: var(--color-red-700);
}

.p-6 {
  padding: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.bg-indigo-600 {
  background-color: var(--color-indigo-600);
}

.hover\:bg-indigo-700:hover {
  background-color: var(--color-indigo-700);
}

.focus\:ring-indigo-500:focus {
  --tw-ring-color: var(--color-indigo-500);
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.p-3 {
  padding: 0.75rem;
}

.text-gray-400 {
  color: #9ca3af;
}

.h-5 {
  height: 1.25rem;
}

.w-5 {
  width: 1.25rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.italic {
  font-style: italic;
}

.fixed {
  position: fixed;
}

.top-4 {
  top: 1rem;
}

.left-1/2 {
  left: 50%;
}

.-translate-x-1/2 {
  transform: translateX(-50%);
}

.z-50 {
  z-index: 50;
}

.bg-red-500 {
  background-color: #ef4444;
}

.bg-green-500 {
  background-color: #22c55e;
}

.bg-blue-500 {
  background-color: #3b82f6;
}

.hidden {
  display: none;
}