/* Minimal utility CSS — hanya menggantikan class `tw-*` yang dipakai view publik,
   supaya tidak perlu memuat Tailwind CDN runtime yang berat. */

.tw-rounded-2xl { border-radius: 1rem; }
.tw-text-xs { font-size: 0.75rem; line-height: 1rem; }
.tw-text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.tw-text-base { font-size: 1rem; line-height: 1.5rem; }
.tw-text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.tw-space-y-1 > * + * { margin-top: 0.25rem; }

@media (min-width: 768px) {
    .md\:tw-text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .md\:tw-text-base { font-size: 1rem; line-height: 1.5rem; }
    .md\:tw-text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}
