.hidden { display: none !important; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.inline-flex { display: inline-flex; }

.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-y-1 { row-gap: 0.25rem; }

.min-w-0 { min-width: 0; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-full { width: 100%; }

.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-36 { height: 9rem; }
.h-full { height: 100%; }

.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }

[class~="py-2.5"] { padding-top: 0.625rem; padding-bottom: 0.625rem; }

.mt-1 { margin-top: 0.25rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mr-1 { margin-right: 0.25rem; }

[class~="mt-1.5"] { margin-top: 0.375rem; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-start { text-align: start; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-6 { line-height: 1.5rem; }
.leading-tight { line-height: 1.25; }
.tracking-wide { letter-spacing: 0.025em; }
.uppercase { text-transform: uppercase; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-pre-line { white-space: pre-line; }

[class~="text-[11px]"] { font-size: 11px; line-height: 1rem; }
[class~="text-[#00AA13]"] { color: #00AA13; }

.text-black { color: #000000; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }

.bg-white { background-color: #ffffff; }
.bg-gray-100 { background-color: #f3f4f6; }

.border {
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
}
.border-b { border-bottom-width: 1px; }
.border-solid { border-style: solid; }
.border-gray-200 { border-color: #e5e7eb; }

.rounded { border-radius: 0.25rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
[class~="rounded-[28px]"] { border-radius: 28px; }

.shadow-xl { box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.18), 0 8px 10px -6px rgba(15, 23, 42, 0.12); }

.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-0 { top: 0; }
[class~="top-[calc(100%+8px)]"] { top: calc(100% + 8px); }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
[class~="max-h-[420px]"] { max-height: 420px; }

.cursor-pointer { cursor: pointer; }
.opacity-70 { opacity: 0.7; }
.col-span-full { grid-column: 1 / -1; }
.space-y-2 > * + * { margin-top: 0.5rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[class~="hover:underline"]:hover { text-decoration: underline; }
[class~="hover:bg-gray-50"]:hover { background-color: #f9fafb; }
[class~="focus-visible:bg-gray-100"]:focus-visible { background-color: #f3f4f6; }

@media (min-width: 640px) {
  [class~="sm:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  [class~="md:p-6"] { padding: 1.5rem; }
  [class~="md:text-2xl"] { font-size: 1.5rem; line-height: 2rem; }
}

@media (min-width: 1024px) {
  [class~="lg:hidden"] { display: none !important; }
  [class~="lg:block"] { display: block !important; }
  [class~="lg:items-stretch"] { align-items: stretch; }
  [class~="lg:border-b-0"] { border-bottom-width: 0 !important; }
  [class~="lg:border-r"] { border-right-width: 1px; }
  [class~="lg:grid-cols-[0.95fr_1.05fr]"] {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

@media (min-width: 1280px) {
  [class~="xl:gap-3"] { gap: 0.75rem; }
}
