@import url("./shadcn/tokens.css");
@import url("./shadcn/base.css");
@import url("./shadcn/components/button.css");
@import url("./shadcn/components/form.css");
@import url("./shadcn/components/card.css");
@import url("./shadcn/components/alert.css");
@import url("./shadcn/components/badge.css");
@import url("./shadcn/components/avatar.css");
@import url("./shadcn/components/table.css");
@import url("./shadcn/components/navigation.css");
@import url("./shadcn/components/dropdown.css");
@import url("./shadcn/components/dialog.css");
@import url("./shadcn/components/sheet.css");
@import url("./shadcn/components/tabs.css");
@import url("./shadcn/components/accordion.css");
@import url("./shadcn/components/toast.css");
@import url("./shadcn/components/tooltip.css");
@import url("./shadcn/components/progress.css");
@import url("./shadcn/components/skeleton.css");
@import url("./shadcn/components/command.css");
@import url("./shadcn/components/breadcrumb.css");
@import url("./shadcn/components/pagination.css");
@import url("./shadcn/components/sidebar.css");
@import url("./shadcn/components/extra.css");
@import url("./shadcn/components/image-zoom.css");

/* Custom Utilities */
.sh-container-sm { max-width: 32rem; margin: 0 auto; width: 100%; }
.sh-container-md { max-width: 48rem; margin: 0 auto; width: 100%; }
.sh-page-title { font-size: 1.5rem !important; font-weight: 600 !important; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Layout & Flexbox */
.sh-flex { display: flex; }
.sh-flex-col { flex-direction: column; }
.sh-items-center { align-items: center; }
.sh-items-start { align-items: flex-start; }
.sh-items-end { align-items: flex-end; }
.sh-justify-between { justify-content: space-between; }
.sh-justify-center { justify-content: center; }
.sh-flex-1 { flex: 1; }
.sh-flex-shrink-0 { flex-shrink: 0; }

/* Spacing (Gap, Margin, Padding) */
.sh-gap-1 { gap: 0.25rem; }
.sh-gap-2 { gap: 0.5rem; }
.sh-gap-3 { gap: 0.75rem; }
.sh-gap-4 { gap: 1rem; }
.sh-gap-5 { gap: 1.25rem; }
.sh-gap-6 { gap: 1.5rem; }

.sh-m-0 { margin: 0; }
.sh-mt-1 { margin-top: 0.25rem; }
.sh-mt-2 { margin-top: 0.5rem; }
.sh-mb-0 { margin-bottom: 0; }
.sh-mb-1 { margin-bottom: 0.25rem; }
.sh-mb-2 { margin-bottom: 0.5rem; }
.sh-mb-4 { margin-bottom: 1rem; }
.sh-mb-6 { margin-bottom: 1.5rem; }

.sh-p-4 { padding: 1rem; }
.sh-p-5 { padding: 1.25rem; }
.sh-p-8 { padding: 2rem; }
.sh-px-4 { padding-left: 1rem; padding-right: 1rem; }
.sh-py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }

/* Text & Typography */
.sh-text-center { text-align: center; }
.sh-text-right { text-align: right; }
.sh-text-xs { font-size: 0.75rem; }
.sh-text-sm { font-size: 0.875rem; }
.sh-text-base { font-size: 1rem; }
.sh-text-lg { font-size: 1.125rem; }
.sh-text-xl { font-size: 1.25rem; }
.sh-text-2xl { font-size: 1.5rem; }
.sh-font-normal { font-weight: 400; }
.sh-font-medium { font-weight: 500; }
.sh-font-semibold { font-weight: 600; }
.sh-font-bold { font-weight: 700; }
.sh-font-black { font-weight: 900; }

/* Colors & Backgrounds */
.sh-text-muted { color: var(--muted-foreground); }
.sh-text-primary { color: var(--primary); }
.sh-text-success { color: var(--success); }
.sh-text-info { color: var(--info); }
.sh-bg-card { background: var(--card); }
.sh-bg-muted { background: var(--muted); }
.sh-bg-success-light { background: rgba(16, 185, 129, 0.1); }
.sh-bg-white { background: #ffffff; }

/* Borders & Radius */
.sh-rounded { border-radius: var(--radius); }
.sh-rounded-md { border-radius: calc(var(--radius) - 2px); }
.sh-rounded-lg { border-radius: var(--radius); }
.sh-rounded-full { border-radius: 9999px; }
.sh-border { border: 1px solid var(--border); }
.sh-border-dashed { border: 1px dashed var(--border); }

/* Sizes */
.sh-w-8 { width: 2rem; }
.sh-h-8 { height: 2rem; }
.sh-w-9 { width: 2.25rem; }
.sh-h-9 { height: 2.25rem; }
.sh-w-12 { width: 3rem; }
.sh-h-12 { height: 3rem; }
.sh-w-16 { width: 4rem; }
.sh-h-16 { height: 4rem; }
