@media (min-width: 640px) {
  .sm\:max-w-sm {
    max-width: 24rem;
  }
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .sm\:mt-0 {
    margin-top: 0;
  }
  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:items-center {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .lg\:grid {
    display: grid;
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:gap-x-5 {
    column-gap: 1.25rem;
  }
  .lg\:mt-4 {
    margin-top: 1rem;
  }
  .lg\:col-span-9 {
    grid-column: span 9 / span 9;
  }
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:border-l {
    border-left-width: 1px;
    border-left-style: solid;
  }
}

.bg-neutral-50 {
  background-color: var(--color-neutral-50);
}

.inline-flex {
  display: inline-flex;
}

.flex {
  display: flex;
}

.gap-x-0\.5 {
  column-gap: 0.125rem;
}

.gap-x-4 {
  column-gap: 1rem;
}

.flex-col {
  flex-direction: column;
}

.min-h-screen {
  min-height: 100vh;
}

/* === Layout & Positioning === */
.min-h-screen {
  min-height: 100vh;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.right-0 {
  right: 0;
}
.z-100 {
  z-index: 100;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.gap-x-1\.5 {
  column-gap: 0.375rem;
} /* 1.5 * 0.25rem */
.gap-y-4 {
  row-gap: 1rem;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}

/* === Sizing === */
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-sm {
  max-width: 24rem;
}
.w-full {
  width: 100%;
}
.w-3\/4 {
  width: 75%;
}
.w-60 {
  width: 15rem;
}
.size-20 {
  width: 5rem;
  height: 5rem;
}
.size-12 {
  width: 3rem;
  height: 3rem;
}
.size-4 {
  width: 1rem;
  height: 1rem;
}
.size-6 {
  width: 1.5rem;
  height: 1.5rem;
}
.w-5 {
  width: 1.25rem;
}
.h-5 {
  height: 1.25rem;
}

/* === Typography === */
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.text-bold {
  font-weight: 700;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list-none {
  list-style-type: none;
}

/* === Borders & Rings === */
.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.border-b-2 {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}
.border {
  border-width: 1px;
  border-style: solid;
}
.border-0 {
  border-width: 0;
}
.border-gray-200 {
  border-color: var(--color-gray-200);
}
.border-gray-300 {
  border-color: var(--color-gray-300);
}
.border-yellow-300 {
  border-color: var(--color-yellow-300);
}
.border-transparent {
  border-color: transparent;
}
.border-b-gray-200 {
  border-bottom-color: var(--color-gray-200);
}
.focus-within\:border-blue-600:focus-within {
  border-color: var(--color-blue-600);
}
.focus\:border-b-blue-500:focus {
  border-bottom-color: var(--color-blue-500);
}
.active\:border-gray-400:active {
  border-color: var(--color-gray-400);
}

.ring-1 {
  box-shadow: 0 0 0 1px
    rgba(var(--tw-ring-rgb, 0 0 0), var(--tw-ring-opacity, 1));
}
.ring-gray-100 {
  --tw-ring-rgb: 243 244 246;
}
.ring-opacity-5 {
  --tw-ring-opacity: 0.05;
}

/* === Radius & Shadows === */
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.shadow {
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

/* === States === */
.hover\:bg-blue-700:hover {
  background-color: var(--color-blue-700);
}
.hover\:bg-gray-50:hover {
  background-color: var(--color-gray-50);
}
.hover\:bg-blue-50:hover {
  background-color: var(--color-blue-50);
}
.hover\:underline:hover {
  text-decoration: underline;
}
.hover\:no-underline:hover {
  text-decoration: none;
}
.hover\:saturate-200:hover {
  filter: saturate(2);
}
.hover\:bg-gray-100:hover {
  background-color: var(--color-gray-100);
}
.hover\:text-black:hover {
  color: var(--color-black);
}
.hover\:rounded-md:hover {
  border-radius: 0.375rem;
}
.active\:bg-blue-800:active {
  background-color: var(--color-blue-800);
}
.active\:saturate-100:active {
  filter: saturate(1);
}
.active\:bg-gray-100:active {
  background-color: var(--color-gray-100);
}
.disabled\:bg-blue-700:disabled {
  background-color: var(--color-blue-700);
}
.disabled\:border-transparent:disabled {
  border-color: transparent;
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.focus\:bg-blue-500:focus {
  background-color: var(--color-blue-500);
}
.focus\:ring-0:focus {
  box-shadow: none;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* === Transforms === */
.rotate-\[30deg\] {
  transform: rotate(30deg);
}

/* === Misc === */
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 2rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}
.space-y-0 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.5rem;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.25rem;
}

.block {
  display: block;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-center {
  text-align: center;
}

.size-4 {
  width: 1rem;
  height: 1rem;
}

.text-sky-200 {
  color: var(--color-sky-200);
}

.cursor-pointer {
  cursor: pointer;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.max-w-xl {
  max-width: 36rem;
}

.text-gray-400 {
  color: var(--color-gray-400);
}

.hover\:text-blue-600:hover {
  color: var(--color-blue-600);
}

.grid {
  display: grid;
}

.shrink-0 {
  flex-shrink: 0;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.justify-self-end {
  justify-self: end;
}

.self-center {
  align-self: center;
}

.row-start-1 {
  grid-row-start: 1;
}

.col-start-1 {
  grid-column-start: 1;
}

.pointer-events-none {
  pointer-events: none;
}

.size-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 0.25rem;
}

.link {
  color: var(--color-blue-600);
}

.w-1\/2 {
  width: 50%;
}

.hidden {
  display: none;
}

.invert {
  filter: invert(1);
}

.outline-1 {
  outline-width: 1px;
  outline-style: solid;
}

.outline-gray-300 {
  outline-color: var(--color-gray-300);
}

.focus\:outline-2:focus {
  outline-width: 2px;
}

.focus\:outline-blue-600:focus {
  outline-color: var(--color-blue-600);
}

.appearance-none {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}

select::-ms-expand {
  display: none;
}

.list-disc {
  list-style-type: disc;
}

.list-circle {
  list-style-type: circle;
}

/* Added classes for the template */

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1.5rem;
}

.items-start {
  align-items: flex-start;
}

.gap-4 {
  gap: 1rem;
}

.h-20 {
  height: 5rem;
}

.w-auto {
  width: auto;
}

.h-40 {
  height: 10rem;
}

.max-w-full {
  max-width: 100%;
}
