/* tailwind.css (utility-subset for the provided dashboard markup) */

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

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}
.visually-hidden{
    display:none;
}
/* Links */
a { color: inherit; text-decoration: none; }

/* Table defaults */
table { border-collapse: collapse; }

/* ============== Breakpoints ============== */
@media (min-width: 640px) { /* sm */ }
@media (min-width: 768px) { /* md */ }
@media (min-width: 1024px) { /* lg */ }

/* ============== Colors ============== */
.bg-slate-50 { background-color: #f8fafc; }
.bg-white { background-color: #ffffff; }
.bg-white\/80 { background-color: rgba(255,255,255,.8); }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-indigo-600 { background-color: #4f46e5; }

.text-slate-900 { color: #0f172a; }
.text-slate-800 { color: #1e293b; }
.text-slate-700 { color: #334155; }
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748b; }
.text-slate-400 { color: #94a3b8; }
.text-white { color: #ffffff; }
.text-indigo-600 { color: #4f46e5; }

/* ============== Borders / Shadow / Radius ============== */
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-slate-200 { border-color: #e2e8f0; }

.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }

.shadow-sm {
  box-shadow: 0 1px 2px rgba(15,23,42,.06), 0 1px 1px rgba(15,23,42,.04);
}

/* ============== Layout / Display ============== */
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

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

.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }

.leading-tight { line-height: 1.25; }

/* ============== Sizing ============== */
.h-16 { height: 4rem; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }

.min-w-full { min-width: 100%; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* ============== Positioning ============== */
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-40 { z-index: 40; }

/* ============== Backdrop ============== */
.backdrop-blur { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* ============== Typography ============== */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }

.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }

/* ============== Spacing (Padding/Margin) ============== */
.p-5 { padding: 1.25rem; }

.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }

.pr-4 { padding-right: 1rem; }

.pb-10 { padding-bottom: 2.5rem; }
.pt-6 { padding-top: 1.5rem; }

.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* ============== Container widths ============== */
.max-w-7xl { max-width: 80rem; }

/* ============== Table ============== */
.table-fixed { table-layout: fixed; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.divide-y > :not([hidden]) ~ :not([hidden]) { border-top: 1px solid #e2e8f0; }

/* ============== Buttons / Hover ============== */
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.hover\:bg-indigo-700:hover { background-color: #4338ca; }
.hover\:text-indigo-700:hover { color: #4338ca; }

.bg-indigo-600 { background-color: #4f46e5; }

/* ============== Arbitrary width utilities used in your table ============== */
.w-\[16\%\] { width: 16%; }
.w-\[14\%\] { width: 14%; }
.w-\[12\%\] { width: 12%; }
.w-\[10\%\] { width: 10%; }

/* ============== Responsive utilities used ============== */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* ============== (Optional) smoother SVG/text rendering ============== */
svg { display: block; }