:root {
  --timi-primary: #2a7d62;
  --timi-primary-dark: #1e5c48;
  --timi-primary-deep: #143e31;
  --timi-primary-light: #389c7c;
  --timi-primary-soft: #f0f8f5;
  --timi-primary-tint: #eaf5f1;
  --timi-gray-text: #606161;
  --timi-dark: #1e293b;
  --timi-darker: #0f172a;
  --timi-accent: #cda34f;
  --timi-accent-light: #fef8ec;
  --timi-border: #e2e8f0;
  --timi-bg: #f8fafc;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: 'Be Vietnam Pro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

body {
  font-family: inherit;
  color: #334155;
  background-color: #f1f5f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img, svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
}

a {
  color: inherit;
  text-decoration: inherit;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.min-h-screen { min-height: 100vh; }
.h-6 { height: 1.5rem; }
.w-6 { width: 1.5rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }

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

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5 { gap: 0.875rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

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

.space-y-0\.5 > * + * { margin-top: 0.125rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }

.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.pt-0 { padding-top: 0; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pl-8 { padding-left: 2rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mr-1 { margin-right: 0.25rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }

.text-\[10px\] { font-size: 10px; line-height: 14px; }
.text-\[11px\] { font-size: 11px; line-height: 15px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.italic { font-style: italic; }
.whitespace-nowrap { white-space: nowrap; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.align-top { vertical-align: top; }

.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-\[\#2a7d62\] { background-color: var(--timi-primary); }
.bg-\[\#1e5c48\] { background-color: var(--timi-primary-dark); }
.bg-\[\#1e293b\] { background-color: #1e293b; }
.bg-\[\#f0f8f5\] { background-color: var(--timi-primary-soft); }
.bg-\[\#eaf5f1\] { background-color: var(--timi-primary-tint); }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-rose-50 { background-color: #fff1f2; }

.bg-brand { background-color: var(--timi-primary); }
.bg-brand-dark { background-color: var(--timi-primary-dark); }
.hover\:bg-brand-dark:hover { background-color: var(--timi-primary-dark); }
.bg-brand-soft { background-color: var(--timi-primary-soft); }
.bg-brand-tint { background-color: var(--timi-primary-tint); }

.hover\:bg-\[\#1e5c48\]:hover { background-color: var(--timi-primary-dark); }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }

.text-white { color: #ffffff; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-\[\#2a7d62\] { color: var(--timi-primary); }
.text-\[\#606161\] { color: #606161; }
.text-brand { color: var(--timi-primary); }
.text-brand-dark { color: var(--timi-primary-dark); }
.hover\:text-brand:hover { color: var(--timi-primary); }
.text-blue-600 { color: #2563eb; }
.text-emerald-600 { color: #059669; }
.text-emerald-800 { color: #065f46; }
.text-rose-500 { color: #f43f5e; }
.text-rose-600 { color: #e11d48; }
.text-rose-800 { color: #9f1239; }

.hover\:text-white:hover { color: #ffffff; }
.hover\:text-\[\#2a7d62\]:hover { color: var(--timi-primary); }
.hover\:underline:hover { text-decoration: underline; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-300 { border-color: #cbd5e1; }
.border-\[\#d1e7dd\] { border-color: var(--timi-primary-tint); }
.border-brand { border-color: var(--timi-primary); }
.border-brand-soft { border-color: var(--timi-primary-tint); }
.border-emerald-200 { border-color: #a7f3d0; }
.border-emerald-300 { border-color: #6ee7b7; }
.border-rose-200 { border-color: #fecdd3; }

.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-\[\#2a7d62\]:focus { border-color: var(--timi-primary); }
.focus\:border-brand:focus { border-color: var(--timi-primary); }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.fixed { position: fixed; }
.relative { position: relative; }
.inset-0 { inset: 0px; }
.z-50 { z-index: 50; }
.bottom-6 { bottom: 1.5rem; }
.right-6 { right: 1.5rem; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.object-contain { object-fit: contain; }

.transition { transition-property: color, background-color, border-color, box-shadow, transform; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

@media (min-width: 640px) {
  .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .sm\:px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
  .sm\:py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
  .sm\:p-4 { padding: 1rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:h-10 { height: 2.5rem; }
  .sm\:mt-2 { margin-top: 0.5rem; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:space-y-1 > * + * { margin-top: 0.25rem; }
  .sm\:space-y-6 > * + * { margin-top: 1.5rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-start { align-items: flex-start; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-right { text-align: right; }
  .sm\:text-left { text-align: left; }
  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:inline { display: inline !important; }
  .sm\:flex-none { flex: none; }
  .sm\:w-auto { width: auto; }
  .sm\:border-l { border-left-width: 1px; border-left-style: solid; }
  .sm\:border-t-0 { border-top-width: 0; }
  .sm\:pl-4 { padding-left: 1rem; }
  .sm\:pt-0 { padding-top: 0; }
}

@media (min-width: 768px) {
  .md\:p-10 { padding: 2.5rem; }
  .md\:block { display: block !important; }
  .md\:hidden { display: none !important; }
  .desktop-table-view { display: block !important; }
  .mobile-cards-view { display: none !important; }
}

@media (max-width: 767.98px) {
  .desktop-table-view { display: none !important; }
  .mobile-cards-view { display: block !important; }
}