/* Minimal hand-crafted replacement for Tailwind CDN usage in Shongbad 360 */
/* Replaces cdn.tailwindcss.com — production safe */

/* Base reset */
*, *::before, *::after { box-sizing: border-box; }

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.w-full { width: 100%; }
.w-48 { width: 12rem; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }

/* Gap */
.gap-0\.5 { gap: 0.125rem; }
.gap-4 { gap: 1rem; }

/* Padding / Margin */
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-0\.5 { padding-left: 0.125rem; padding-right: 0.125rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

/* Typography */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.font-newsreader { font-family: 'Newsreader', Georgia, serif; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Colors */
.text-red-700 { color: #b91c1c; }
.text-neutral-400 { color: #a3a3a3; }
.text-neutral-700 { color: #404040; }
.bg-neutral-50 { background-color: #fafafa; }
.bg-red-700 { background-color: #b91c1c; }

/* Border */
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-neutral-100 { border-color: #f5f5f5; }
.rounded-full { border-radius: 9999px; }

/* Display */
.hidden { display: none; }
.sticky { position: sticky; }
.overflow-y-auto { overflow-y: auto; }

/* Transitions */
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:block { display: block; }
}
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:p-6 { padding: 1.5rem; }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:col-span-2 { grid-column: span 2 / span 2; }
}
