/**
 * Admin panel styles – fully local, no CDN (works when cdn.tailwindcss.com is unreachable).
 * Covers layout, dashboard, forms, and primary purple theme.
 */

/* Layout - prevent collapse on all admin pages */
body { margin: 0; font-family: ui-sans-serif, system-ui, sans-serif; line-height: 1.5; min-height: 100vh; display: flex; background: #f3f4f6; }
main { flex: 1; margin-left: 16rem; min-width: 0; padding: 1.5rem; overflow-x: auto; }
main > div { min-width: 0; max-width: 100%; }
aside { width: 16rem; background: #fff; box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); border-right: 1px solid #e9d5ff; display: flex; flex-direction: column; position: fixed; top: 0; left: 0; height: 100vh; z-index: 50; }

/* Flex */
.flex { display: flex; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.items-start { align-items: flex-start; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-2.lg\:grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
}
.col-span-full { grid-column: 1 / -1; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.bg-\[length\:10px_10px\] { background-size: 10px 10px; }
.capitalize { text-transform: capitalize; }
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.border-2 { border-width: 2px; border-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-transparent { border-color: transparent; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-400 { border-color: #9ca3af; }
.bg-gray-200 { background-color: #e5e7eb; }
.-mb-px { margin-bottom: -1px; }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* Sizing */
.w-full { width: 100%; }
.w-64 { width: 16rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-20 { width: 5rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.min-w-0 { min-width: 0; }
.max-w-\[80\%\] { max-width: 80%; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-h-\[90vh\] { max-height: 90vh; }
.container-fluid { width: 100%; max-width: 100%; padding-left: 1rem; padding-right: 1rem; }
.pt-4 { padding-top: 1rem; }
.pb-4 { padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.text-6xl { font-size: 3.75rem; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pb-4 { padding-bottom: 1rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-64 { margin-left: 16rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Colors - gray */
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }

/* Colors - primary (purple) */
.text-primary-100 { color: #f3e8ff; }
.text-primary-200 { color: #e9d5ff; }
.text-primary-600 { color: #7c3aed; }
.text-primary-700 { color: #6d28d9; }
.bg-primary-50 { background-color: #faf5ff; }
.bg-primary-100 { background-color: #f3e8ff; }
.border-primary-200 { border-color: #e9d5ff; }
.border-primary-500 { border-color: #8b5cf6; }
.from-primary-500 { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-primary-600 { --tw-gradient-to: #7c3aed; }
.to-primary-700 { --tw-gradient-to: #6d28d9; }
.bg-gradient-to-r.from-primary-500.to-primary-700 { background-image: linear-gradient(to right, #8b5cf6, #6d28d9); }
.bg-gradient-to-br.from-primary-500.to-primary-600 { background-image: linear-gradient(to bottom right, #8b5cf6, #7c3aed); }
.bg-gradient-to-br.from-primary-400.to-primary-600 { background-image: linear-gradient(to bottom right, #c084fc, #7c3aed); }
.bg-gradient-to-r.from-primary-600.to-primary-700 { background-image: linear-gradient(to right, #7c3aed, #6d28d9); }

/* Colors - blue, green, red, orange, yellow */
.text-green-600 { color: #16a34a; }
.text-red-400 { color: #f87171; }
.text-red-700 { color: #b91c1c; }
.text-red-800 { color: #991b1b; }
.text-orange-600 { color: #ea580c; }
.text-white { color: #fff; }
.text-primary-500 { color: #8b5cf6; }
.bg-red-50 { background-color: #fef2f2; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-orange-50 { background-color: #fff7ed; }
.border-red-200 { border-color: #fecaca; }
.border-green-200 { border-color: #bbf7d0; }
.border-blue-200 { border-color: #bfdbfe; }
.border-yellow-200 { border-color: #fde68a; }
.bg-gradient-to-br.from-blue-500.to-blue-600 { background-image: linear-gradient(to bottom right, #3b82f6, #2563eb); }
.bg-gradient-to-br.from-green-500.to-green-600 { background-image: linear-gradient(to bottom right, #22c55e, #16a34a); }
.bg-gradient-to-br.from-orange-500.to-orange-600 { background-image: linear-gradient(to bottom right, #f97316, #ea580c); }
.bg-gradient-to-br.from-green-400.to-green-600 { background-image: linear-gradient(to bottom right, #4ade80, #16a34a); }
.bg-gradient-to-r.from-green-500.to-green-700 { background-image: linear-gradient(to right, #22c55e, #15803d); }
.bg-primary-500 { background-color: #8b5cf6; }
.bg-green-500 { background-color: #22c55e; }
.bg-orange-500 { background-color: #f97316; }
.hover\:bg-green-100:hover { background-color: #dcfce7; }
.hover\:bg-orange-100:hover { background-color: #ffedd5; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.hover\:text-primary-600:hover { color: #7c3aed; }
/* Button hover gradients */
a.bg-gradient-to-r.from-primary-500.to-primary-700:hover,
button.bg-gradient-to-r.from-primary-500.to-primary-700:hover { background-image: linear-gradient(to right, #7c3aed, #5b21b6); }
a.bg-gradient-to-r.from-green-500.to-green-700:hover,
button.bg-gradient-to-r.from-green-500.to-green-700:hover { background-image: linear-gradient(to right, #16a34a, #15803d); }

/* Backgrounds */
.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }
.bg-gray-600 { background-color: #4b5563; }
.bg-opacity-10 { opacity: 0.1; }
.bg-opacity-20 { opacity: 0.2; }
.bg-opacity-50 { opacity: 0.5; }
.opacity-10 { opacity: 0.1; }

/* Border & radius */
.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-r { border-right-width: 1px; border-right-style: solid; }
.border-gray-200 { border-color: #e5e7eb; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.shadow-3d { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04), 0 0 0 1px rgba(139,92,246,0.1); }
.shadow-3d-lg { box-shadow: 0 25px 50px -12px rgba(0,0,0,.25), 0 0 0 1px rgba(139,92,246,0.1); }
.shadow-glow { box-shadow: 0 0 20px rgba(139,92,246,0.3); }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.bottom-4 { bottom: 1rem; }
.left-4 { left: 1rem; }
.right-3 { right: 0.75rem; }
.top-3 { top: 0.75rem; }
.-top-1 { top: -0.25rem; }
.-right-1 { right: -0.25rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[9999\] { z-index: 9999; }
/* Modal overlay: above sidebar and content */
#createUserModal,
#bankDetailsModal,
#kycDetailsModal,
#rejectKycModal,
#fullscreenModal { z-index: 9999 !important; }

/* Display & visibility */
.block { display: block; }
.hidden { display: none !important; }
.inline-flex { display: inline-flex; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.hover\:bg-primary-50:hover { background-color: #faf5ff; }
.hover\:bg-primary-100:hover { background-color: #f3e8ff; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:text-primary-500:hover { color: #8b5cf6; }
.hover\:text-primary-700:hover { color: #6d28d9; }
.hover\:text-red-500:hover { color: #ef4444; }
.hover\:text-primary-900:hover { color: #4c1d95; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:bg-orange-600:hover { background-color: #ea580c; }
.hover\:bg-primary-700:hover { background-color: #6d28d9; }
.hover\:scale-105:hover { transform: scale(1.05); }
.duration-200 { transition-duration: 200ms; }
.opacity-60 { opacity: 0.6; }
.relative.z-10 { position: relative; z-index: 10; }
.pointer-events-auto { pointer-events: auto; }
.mt-auto { margin-top: auto; }

/* Custom components */
.gradient-bg { background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c4b5fd 100%); }
.card-3d {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
  transition: all 0.3s ease;
}
.card-3d:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25), 0 0 0 1px rgba(139,92,246,0.2);
}
.floating { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.sidebar-item { position: relative; overflow: hidden; }
.sidebar-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.sidebar-item:hover::before { left: 100%; }
.glass-effect {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite alternate; }
@keyframes pulse-glow {
  from { box-shadow: 0 0 20px rgba(139,92,246,0.3); }
  to { box-shadow: 0 0 40px rgba(139,92,246,0.6); }
}

/* Header bar */
header.bg-white { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.1); border-bottom: 1px solid #e5e7eb; padding: 1rem 1.5rem; margin-bottom: 1.5rem; border-radius: 0.5rem; }

/* Buttons & form overrides */
button:not(.bg-primary-100):not(.text-gray-500):not(.text-gray-400), .btn:not(.bg-primary-100), [type="submit"]:not(.text-gray-400), a[role="button"], .primary-button {
  background-color: #111 !important;
  color: #fff !important;
  border: none !important;
}
/* Keep secondary/icon buttons their intended style */
button.bg-primary-100, button.text-gray-500 { background-color: #f3e8ff !important; color: #6d28d9 !important; }
button.text-gray-500 { background-color: transparent !important; color: #6b7280 !important; }
button.text-gray-400 { background-color: transparent !important; color: #9ca3af !important; }
.bg-gray-100.text-gray-800, .bg-white.text-gray-800, .bg-white.text-gray-700 {
  background-color: #e7e5e4 !important;
  color: #27272a !important;
}
input, select, textarea {
  background-color: rgba(139,92,246,0.1) !important;
  color: #27272a !important;
  border: 1px solid #a78bfa !important;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid #8b5cf6 !important;
  background-color: #fff !important;
}
.form-control { background-color: #f3f4f6 !important; color: #27272a !important; }

/* Tables */
table { width: 100%; border-collapse: collapse; }
.min-w-full { min-width: 100%; }
.whitespace-nowrap { white-space: nowrap; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
th, td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid #e5e7eb; }
thead { background-color: #f9fafb; }
tbody tr:hover { background-color: #f9fafb; }

/* User Details page: prevent collapse, allow scroll in tabs */
.user-details-page { width: 100%; max-width: 100%; }
.user-details-page .overflow-x-auto { min-width: 0; }
.user-details-page [id^="tab-"] { min-width: 0; overflow: visible; }
.user-details-page table { table-layout: auto; }

/* Layout wrappers */
body > div.flex { position: relative; display: flex !important; width: 100% !important; }
.main-content-wrapper { position: relative !important; z-index: 1 !important; margin-left: 0 !important; left: auto !important; width: auto !important; flex: 1 1 0% !important; }
.sidebar-wrapper { position: relative !important; z-index: 100 !important; width: 16rem !important; flex: 0 0 16rem !important; order: -1 !important; }

/* Links in sidebar - not blue underline */
aside a { color: #374151; text-decoration: none; }
aside a:hover { color: #6d28d9; background-color: #faf5ff; }
aside .bg-primary-50 a, aside .bg-primary-100 a { color: #6d28d9; font-weight: 600; }

/* Divide */
.divide-y > * + * { border-top-width: 1px; border-color: #e5e7eb; }
.divide-gray-200 > * + * { border-color: #e5e7eb; }

/* Login page */
.min-h-screen { min-height: 100vh; }
.rounded-3xl { border-radius: 1.5rem; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.opacity-5 { opacity: 0.05; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.h-32 { height: 8rem; }
.h-24 { height: 6rem; }
.h-40 { height: 10rem; }
.h-28 { height: 7rem; }
.top-20 { top: 5rem; }
.left-20 { left: 5rem; }
.right-32 { right: 8rem; }
.bottom-32 { bottom: 8rem; }
.left-32 { left: 8rem; }
.bottom-20 { bottom: 5rem; }
.right-20 { right: 5rem; }
.inset-y-0 { top: 0; bottom: 0; }
.pl-10 { padding-left: 2.5rem; }
.border-gray-300 { border-color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.pointer-events-none { pointer-events: none; }
.border-red-500 { border-color: #ef4444; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-red-800 { color: #991b1b; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-yellow-700 { color: #a16207; }
.text-yellow-800 { color: #854d0e; }
.text-purple-700 { color: #7e22ce; }
.text-purple-800 { color: #6b21a8; }
.text-indigo-600 { color: #4f46e5; }
.text-indigo-800 { color: #3730a3; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-green-100 { background-color: #dcfce7; }
.bg-red-100 { background-color: #fee2e2; }
.bg-yellow-100 { background-color: #fef9c3; }
.bg-orange-100 { background-color: #ffedd5; }
.bg-purple-50 { background-color: #faf5ff; }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-indigo-100 { background-color: #e0e7ff; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-cyan-50 { background-color: #ecfeff; }
.bg-pink-50 { background-color: #fdf2f8; }
.bg-indigo-50 { background-color: #eef2ff; }
.bg-purple-600 { background-color: #9333ea; }
.bg-red-500 { background-color: #ef4444; }
.bg-red-600 { background-color: #dc2626; }
.bg-blue-600 { background-color: #2563eb; }
.bg-green-600 { background-color: #16a34a; }
.bg-yellow-600 { background-color: #ca8a04; }
.border-amber-300 { border-color: #fcd34d; }
.text-amber-700 { color: #b45309; }
.border-cyan-300 { border-color: #67e8f9; }
.border-cyan-400 { border-color: #22d3ee; }
.border-purple-200 { border-color: #e9d5ff; }
.border-purple-300 { border-color: #d8b4fe; }
.border-purple-400 { border-color: #c084fc; }
.border-green-300 { border-color: #86efac; }
.border-green-400 { border-color: #4ade80; }
.border-green-500 { border-color: #22c55e; }
.border-orange-200 { border-color: #fed7aa; }
.border-yellow-300 { border-color: #fde047; }
.border-yellow-400 { border-color: #facc15; }
.border-yellow-500 { border-color: #eab308; }
.border-blue-300 { border-color: #93c5fd; }
.border-blue-500 { border-color: #3b82f6; }
.border-red-300 { border-color: #fca5a5; }
.border-red-400 { border-color: #f87171; }
.leading-5 { line-height: 1.25rem; }
.leading-tight { line-height: 1.25; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.input-focus { transition: all 0.3s ease; }
/* Focus ring for inputs (used in forms) */
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(139,92,246,0.5); outline: none; }
.focus\:ring-primary-500:focus { box-shadow: 0 0 0 2px rgba(139,92,246,0.5); }
.focus\:border-transparent:focus { border-color: transparent; }
.focus\:border-primary-500:focus { border-color: #8b5cf6; }
.focus\:outline-none:focus { outline: none; }
.input-focus:focus { transform: translateY(-2px); box-shadow: 0 10px 25px -5px rgba(139,92,246,0.3); outline: 2px solid #8b5cf6; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-slide-up { animation: slide-up 0.5s ease-out; }
.bg-gradient-to-br.from-primary-500.to-primary-700 { background-image: linear-gradient(to bottom right, #8b5cf6, #6d28d9); }
