/*
Theme Name: lponews v2
Theme URI: https://lponews.com
Author: lponews Team
Description: Complete IPO, SME IPO, Brokers, NCD, Rights Issue, Buyback, OFS portal - v2 with self-contained CSS
Version: 2.0.0
Text Domain: lponews-v2
*/

/* ===== SELF-CONTAINED STYLES - NO CDN, NO @apply ===== */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background-color: #f9fafb; color: #111827; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
table { border-collapse: collapse; width: 100%; }

/* ===== LAYOUT ===== */
.max-w-7xl { max-width: 80rem; }.max-w-6xl { max-width: 72rem; }.max-w-5xl { max-width: 64rem; }.max-w-4xl { max-width: 56rem; }.max-w-3xl { max-width: 48rem; }.max-w-2xl { max-width: 42rem; }.max-w-xl { max-width: 36rem; }.max-w-lg { max-width: 32rem; }.max-w-md { max-width: 28rem; }.max-w-none { max-width: none; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }.w-auto { width: auto; }.w-4 { width: 1rem; }.w-5 { width: 1.25rem; }.w-6 { width: 1.5rem; }.w-8 { width: 2rem; }.w-10 { width: 2.5rem; }.w-12 { width: 3rem; }.w-16 { width: 4rem; }.w-20 { width: 5rem; }.w-24 { width: 6rem; }.w-32 { width: 8rem; }.w-48 { width: 12rem; }
.h-3 { height: 0.75rem; }.h-4 { height: 1rem; }.h-5 { height: 1.25rem; }.h-6 { height: 1.5rem; }.h-8 { height: 2rem; }.h-9 { height: 2.25rem; }.h-10 { height: 2.5rem; }.h-12 { height: 3rem; }.h-14 { height: 3.5rem; }.h-16 { height: 4rem; }.h-20 { height: 5rem; }.h-24 { height: 6rem; }.h-32 { height: 8rem; }.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }.min-w-0 { min-width: 0; }.max-h-96 { max-height: 24rem; }

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

/* ===== GRID ===== */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }.col-span-4 { grid-column: span 4 / span 4; }
@media (min-width: 640px) { .sm\:flex-row { flex-direction: row; }.sm\:items-center { align-items: center; }.sm\:justify-between { justify-content: space-between; }.sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }.sm\:text-left { text-align: left; } }
@media (min-width: 768px) { .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }.md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }.md\:flex-row { flex-direction: row; }.md\:items-center { align-items: center; }.md\:justify-between { justify-content: space-between; }.md\:text-left { text-align: left; } }
@media (min-width: 1024px) { .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }.lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }.lg\:col-span-2 { grid-column: span 2 / span 2; }.lg\:flex { display: flex; }.lg\:hidden { display: none; }.lg\:px-8 { padding-left: 2rem; padding-right: 2rem; } }

/* ===== DISPLAY ===== */
.hidden { display: none; }.block { display: block; }.inline-block { display: inline-block; }

/* ===== PADDING ===== */
.p-0 { padding: 0; }.p-1 { padding: 0.25rem; }.p-2 { padding: 0.5rem; }.p-3 { padding: 0.75rem; }.p-4 { padding: 1rem; }.p-5 { padding: 1.25rem; }.p-6 { padding: 1.5rem; }.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }.px-4 { padding-left: 1rem; padding-right: 1rem; }.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.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-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }.py-8 { padding-top: 2rem; padding-bottom: 2rem; }.py-12 { padding-top: 3rem; padding-bottom: 3rem; }.py-16 { padding-top: 4rem; padding-bottom: 4rem; }.pb-16 { padding-bottom: 4rem; }

/* ===== MARGIN ===== */
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.25rem; }.mt-2 { margin-top: 0.5rem; }.mt-3 { margin-top: 0.75rem; }.mt-4 { margin-top: 1rem; }.mt-6 { margin-top: 1.5rem; }.mt-8 { margin-top: 2rem; }
.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; }.mb-8 { margin-bottom: 2rem; }.mb-10 { margin-bottom: 2.5rem; }
.mr-2 { margin-right: 0.5rem; }.mr-3 { margin-right: 0.75rem; }
.ml-2 { margin-left: 0.5rem; }.ml-3 { margin-left: 0.75rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.-mt-5 { margin-top: -1.25rem; }

/* ===== TYPOGRAPHY ===== */
.text-center { text-align: center; }.text-left { text-align: left; }.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }.text-sm { font-size: 0.875rem; line-height: 1.25rem; }.text-base { font-size: 1rem; line-height: 1.5rem; }.text-lg { font-size: 1.125rem; line-height: 1.75rem; }.text-xl { font-size: 1.25rem; line-height: 1.75rem; }.text-2xl { font-size: 1.5rem; line-height: 2rem; }.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }.text-6xl { font-size: 3.75rem; line-height: 1; }.text-8xl { font-size: 6rem; line-height: 1; }
.font-normal { font-weight: 400; }.font-medium { font-weight: 500; }.font-semibold { font-weight: 600; }.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }.capitalize { text-transform: capitalize; }
.tracking-wide { letter-spacing: 0.025em; }.tracking-wider { letter-spacing: 0.05em; }
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leading-none { line-height: 1; }.leading-tight { line-height: 1.25; }.leading-relaxed { line-height: 1.625; }
.list-inside { list-style-position: inside; }.list-disc { list-style-type: disc; }.list-decimal { list-style-type: decimal; }.list-none { list-style-type: none; }

/* ===== TEXT COLORS ===== */
.text-white { color: #ffffff; }.text-black { color: #000000; }
.text-gray-50 { color: #f9fafb; }.text-gray-100 { color: #f3f4f6; }.text-gray-200 { color: #e5e7eb; }.text-gray-300 { color: #d1d5db; }.text-gray-400 { color: #9ca3af; }.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; }
.text-blue-50 { color: #eff6ff; }.text-blue-100 { color: #dbeafe; }.text-blue-200 { color: #bfdbfe; }.text-blue-300 { color: #93c5fd; }.text-blue-400 { color: #60a5fa; }.text-blue-500 { color: #3b82f6; }.text-blue-600 { color: #2563eb; }.text-blue-700 { color: #1d4ed8; }.text-blue-800 { color: #1e40af; }
.text-green-400 { color: #34d399; }.text-green-500 { color: #10b981; }.text-green-600 { color: #059669; }.text-green-700 { color: #047857; }.text-green-800 { color: #065f46; }
.text-purple-400 { color: #a78bfa; }.text-purple-600 { color: #7c3aed; }.text-purple-800 { color: #5b21b6; }
.text-yellow-400 { color: #fbbf24; }.text-yellow-500 { color: #f59e0b; }.text-yellow-600 { color: #d97706; }.text-yellow-800 { color: #92400e; }
.text-red-400 { color: #f87171; }.text-red-500 { color: #ef4444; }.text-red-600 { color: #dc2626; }.text-red-800 { color: #991b1b; }

/* ===== BACKGROUND COLORS ===== */
.bg-white { background-color: #ffffff; }.bg-black { background-color: #000000; }.bg-transparent { background-color: transparent; }
.bg-gray-50 { background-color: #f9fafb; }.bg-gray-100 { background-color: #f3f4f6; }.bg-gray-200 { background-color: #e5e7eb; }.bg-gray-300 { background-color: #d1d5db; }.bg-gray-400 { background-color: #9ca3af; }.bg-gray-500 { background-color: #6b7280; }.bg-gray-600 { background-color: #4b5563; }.bg-gray-700 { background-color: #374151; }.bg-gray-800 { background-color: #1f2937; }.bg-gray-900 { background-color: #111827; }
.bg-blue-50 { background-color: #eff6ff; }.bg-blue-100 { background-color: #dbeafe; }.bg-blue-200 { background-color: #bfdbfe; }.bg-blue-500 { background-color: #3b82f6; }.bg-blue-600 { background-color: #2563eb; }.bg-blue-700 { background-color: #1d4ed8; }.bg-blue-900 { background-color: #1e3a5f; }
.bg-green-50 { background-color: #ecfdf5; }.bg-green-100 { background-color: #d1fae5; }.bg-green-500 { background-color: #10b981; }.bg-green-900 { background-color: #064e3b; }
.bg-purple-50 { background-color: #f5f3ff; }.bg-purple-100 { background-color: #f3e8ff; }.bg-purple-900 { background-color: #3b0764; }
.bg-yellow-50 { background-color: #fffbeb; }.bg-yellow-100 { background-color: #fef3c7; }.bg-yellow-500 { background-color: #f59e0b; }.bg-yellow-900 { background-color: #78350f; }
.bg-red-50 { background-color: #fef2f2; }.bg-red-100 { background-color: #fee2e2; }.bg-red-500 { background-color: #ef4444; }.bg-red-900 { background-color: #450a0a; }

/* ===== BORDERS ===== */
.border { border: 1px solid #e5e7eb; }.border-0 { border: 0; }.border-2 { border-width: 2px; }
.border-b { border-bottom: 1px solid #e5e7eb; }.border-t { border-top: 1px solid #e5e7eb; }.border-l { border-left: 1px solid #e5e7eb; }.border-r { border-right: 1px solid #e5e7eb; }
.border-dashed { border-style: dashed; }
.border-gray-100 { border-color: #f3f4f6; }.border-gray-200 { border-color: #e5e7eb; }.border-gray-300 { border-color: #d1d5db; }.border-gray-600 { border-color: #4b5563; }.border-gray-700 { border-color: #374151; }.border-gray-800 { border-color: #1f2937; }
.border-blue-200 { border-color: #bfdbfe; }.border-blue-500 { border-color: #3b82f6; }.border-blue-600 { border-color: #2563eb; }.border-blue-800 { border-color: #1e40af; }
.border-green-200 { border-color: #a7f3d0; }.border-green-800 { border-color: #065f46; }
.border-red-200 { border-color: #fecaca; }.border-red-800 { border-color: #991b1b; }
.border-yellow-200 { border-color: #fde68a; }.border-yellow-800 { border-color: #92400e; }
.border-transparent { border-color: transparent; }.border-white { border-color: #ffffff; }

/* ===== BORDER RADIUS ===== */
.rounded-none { border-radius: 0; }.rounded-sm { border-radius: 0.125rem; }.rounded { border-radius: 0.25rem; }.rounded-md { border-radius: 0.375rem; }.rounded-lg { border-radius: 0.5rem; }.rounded-xl { border-radius: 0.75rem; }.rounded-2xl { border-radius: 1rem; }.rounded-full { border-radius: 9999px; }

/* ===== DIVIDE ===== */
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-gray-200 > * + * { border-color: #e5e7eb; }.divide-gray-700 > * + * { border-color: #374151; }

/* ===== OVERFLOW ===== */
.overflow-hidden { overflow: hidden; }.overflow-x-auto { overflow-x: auto; -webkit-overflow-scrolling: touch; }.overflow-y-auto { overflow-y: auto; }

/* ===== SHADOWS ===== */
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); }.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06); }.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }.shadow-inner { box-shadow: inset 0 2px 4px rgba(0,0,0,0.06); }.shadow-none { box-shadow: none; }

/* ===== HOVER ===== */
.hover\:bg-gray-50:hover { background-color: #f9fafb; }.hover\:bg-gray-100:hover { background-color: #f3f4f6; }.hover\:bg-gray-200:hover { background-color: #e5e7eb; }.hover\:bg-blue-50:hover { background-color: #eff6ff; }.hover\:bg-blue-600:hover { background-color: #2563eb; }.hover\:bg-blue-700:hover { background-color: #1d4ed8; }.hover\:bg-blue-800:hover { background-color: #1e40af; }.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:text-white:hover { color: #ffffff; }.hover\:text-gray-700:hover { color: #374151; }.hover\:text-gray-800:hover { color: #1f2937; }.hover\:text-blue-400:hover { color: #60a5fa; }.hover\:text-blue-500:hover { color: #3b82f6; }.hover\:text-blue-600:hover { color: #2563eb; }.hover\:text-green-600:hover { color: #059669; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.hover\:opacity-80:hover { opacity: 0.8; }

/* ===== TRANSITIONS ===== */
.transition { transition: all 0.15s; }.transition-colors { transition: background-color 0.15s, color 0.15s, border-color 0.15s; }.transition-shadow { transition: box-shadow 0.15s; }.transition-all { transition: all 0.2s; }
.duration-200 { transition-duration: 0.2s; }.duration-500 { transition-duration: 0.5s; }

/* ===== OPACITY ===== */
.opacity-0 { opacity: 0; }.opacity-50 { opacity: 0.5; }.opacity-75 { opacity: 0.75; }.opacity-100 { opacity: 1; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }

/* ===== VISIBILITY ===== */
.visible { visibility: visible; }.invisible { visibility: hidden; }

/* ===== Z-INDEX ===== */
.z-10 { z-index: 10; }.z-40 { z-index: 40; }.z-50 { z-index: 50; }

/* ===== POSITION ===== */
.relative { position: relative; }.absolute { position: absolute; }.fixed { position: fixed; }.sticky { position: sticky; }
.top-0 { top: 0; }.top-full { top: 100%; }.bottom-0 { bottom: 0; }.left-0 { left: 0; }.right-0 { right: 0; }.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* ===== COMPONENTS ===== */
.card { background-color: #ffffff; border: 1px solid #e5e7eb; border-radius: 0.75rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.btn-primary { display: inline-flex; align-items: center; padding: 0.5rem 1rem; background-color: #2563eb; color: #ffffff; border-radius: 0.5rem; font-weight: 500; border: none; cursor: pointer; transition: background-color 0.15s; text-decoration: none; }
.btn-primary:hover { background-color: #1d4ed8; }
.btn-secondary { display: inline-flex; align-items: center; padding: 0.5rem 1rem; background-color: #e5e7eb; color: #374151; border-radius: 0.5rem; font-weight: 500; transition: background-color 0.15s; text-decoration: none; border: none; cursor: pointer; }
.btn-secondary:hover { background-color: #d1d5db; }
.btn-sm { padding: 0.25rem 0.75rem; font-size: 0.875rem; }
.nav-link { padding: 0.5rem 0.75rem; color: #374151; font-size: 0.875rem; font-weight: 500; border-radius: 0.375rem; transition: background-color 0.15s; text-decoration: none; white-space: nowrap; }
.nav-link:hover { background-color: #f3f4f6; color: #2563eb; }
.dropdown-menu { position: absolute; top: 100%; left: 0; margin-top: 0.25rem; background-color: #ffffff; border: 1px solid #e5e7eb; border-radius: 0.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.1); min-width: 200px; opacity: 0; visibility: hidden; transition: all 0.15s; z-index: 100; padding: 0.5rem 0; }
.group:hover .dropdown-menu { opacity: 1 !important; visibility: visible !important; }
.dropdown-menu a { display: block; padding: 0.625rem 1rem; font-size: 0.875rem; transition: background-color 0.15s; text-decoration: none; color: #374151; }
.dropdown-menu a:hover { background-color: #eff6ff; color: #2563eb; }
.badge { display: inline-flex; align-items: center; padding: 0.125rem 0.625rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; }
.badge-open { background-color: #d1fae5; color: #065f46; }.badge-upcoming { background-color: #dbeafe; color: #1e40af; }.badge-closed { background-color: #fee2e2; color: #991b1b; }.badge-listed { background-color: #f3e8ff; color: #6b21a8; }
.table-header { background-color: #f9fafb; border-bottom: 1px solid #e5e7eb; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #6b7280; padding: 0.75rem 1rem; text-align: left; }
.table-cell { padding: 0.75rem 1rem; font-size: 0.875rem; color: #374151; }
.table-row { border-bottom: 1px solid #f3f4f6; transition: background-color 0.15s; }
.table-row:hover { background-color: #f9fafb; }
.spinner { border: 3px solid #e5e7eb; border-top: 3px solid #2563eb; border-radius: 50%; width: 40px; height: 40px; animation: spin 0.8s linear infinite; display: inline-block; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.quick-link-card { display: block; background-color: #ffffff; border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1.25rem 1rem; text-align: center; transition: box-shadow 0.2s; text-decoration: none; }
.quick-link-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.quick-link-card .icon-box { width: 3rem; height: 3rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; }
.quick-link-card .icon-box svg { width: 1.5rem; height: 1.5rem; }
.quick-link-card .label { font-size: 0.875rem; font-weight: 500; color: #111827; }
.quick-link-card:hover .label { color: #2563eb; }
.stats-card { background-color: #ffffff; border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1.25rem; text-align: center; }
.stats-card .stat-value { font-size: 1.5rem; font-weight: 700; }
.stats-card .stat-label { font-size: 0.875rem; color: #6b7280; margin-top: 0.25rem; }
.progress-bar { height: 0.5rem; border-radius: 9999px; background-color: #e5e7eb; overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 9999px; transition: width 0.5s ease; }
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.broker-card { background-color: #ffffff; border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1.25rem; }
.footer-link { color: #6b7280; font-size: 0.875rem; text-decoration: none; display: block; padding: 0.25rem 0; }
.footer-link:hover { color: #2563eb; }
.mobile-bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; background-color: #ffffff; border-top: 1px solid #e5e7eb; display: flex; padding: 0.375rem 0; }
.mobile-bottom-nav a { flex: 1; text-align: center; padding: 0.375rem 0; font-size: 0.6875rem; color: #6b7280; text-decoration: none; }
.mobile-bottom-nav a:hover, .mobile-bottom-nav a.active { color: #2563eb; }
.mobile-bottom-nav a svg { width: 1.25rem; height: 1.25rem; margin: 0 auto 0.125rem; display: block; }
@media (min-width: 1024px) { .mobile-bottom-nav { display: none; } }
.prose-content h2 { font-size: 1.25rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.prose-content h3 { font-size: 1.125rem; font-weight: 600; margin-top: 1rem; margin-bottom: 0.5rem; }
.prose-content p { margin-bottom: 1rem; line-height: 1.625; }
.prose-content ul { list-style-type: disc; list-style-position: inside; margin-bottom: 1rem; }
.prose-content a { color: #2563eb; text-decoration: underline; }
input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], input[type="search"], select, textarea { width: 100%; padding: 0.5rem 1rem; border: 1px solid #d1d5db; border-radius: 0.5rem; background-color: #ffffff; color: #111827; font-size: 0.875rem; }
input:focus, select:focus, textarea:focus { outline: none; box-shadow: 0 0 0 2px #93c5fd; border-color: #2563eb; }
input[type="checkbox"], input[type="radio"] { width: auto; margin-right: 0.5rem; }
.calendar-day { min-height: 80px; }.calendar-day:hover { background-color: #eff6ff; }
#mobile-menu { display: none; background-color: #ffffff; border-top: 1px solid #e5e7eb; }
#mobile-menu.open { display: block; }
#mobile-menu a { display: block; padding: 0.75rem 1rem; color: #374151; border-bottom: 1px solid #f3f4f6; text-decoration: none; font-size: 0.9375rem; }
#mobile-menu a:hover { background-color: #f3f4f6; }
#mobile-menu .dropdown-menu { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; padding-left: 1rem; min-width: auto; }
.last\:border-0:last-child { border-width: 0; }
.group:hover .group-hover\:text-blue-600 { color: #2563eb; }.group:hover .group-hover\:text-green-600 { color: #059669; }.group:hover .group-hover\:text-purple-600 { color: #7c3aed; }.group:hover .group-hover\:text-yellow-600 { color: #d97706; }

/* ===== DARK MODE ===== */
.dark body, body.dark { background-color: #111827; color: #f3f4f6; }
.dark .card { background-color: #1f2937; border-color: #374151; }
.dark .btn-secondary { background-color: #374151; color: #d1d5db; }.dark .btn-secondary:hover { background-color: #4b5563; }
.dark .nav-link { color: #d1d5db; }.dark .nav-link:hover { background-color: #374151; color: #60a5fa; }
.dark .dropdown-menu { background-color: #1f2937; border-color: #374151; }
.dark .dropdown-menu a { color: #d1d5db; }.dark .dropdown-menu a:hover { background-color: #374151; color: #60a5fa; }
.dark #mobile-menu { background-color: #1f2937; border-top-color: #374151; }
.dark #mobile-menu a { color: #d1d5db; border-bottom-color: #374151; }.dark #mobile-menu a:hover { background-color: #374151; }
.dark .quick-link-card { background-color: #1f2937; border-color: #374151; }
.dark .quick-link-card .label { color: #f9fafb; }.dark .quick-link-card:hover .label { color: #60a5fa; }
.dark .stats-card { background-color: #1f2937; border-color: #374151; }.dark .stats-card .stat-label { color: #9ca3af; }
.dark .broker-card { background-color: #1f2937; border-color: #374151; }
.dark .mobile-bottom-nav { background-color: #1f2937; border-top-color: #374151; }
.dark .mobile-bottom-nav a { color: #9ca3af; }.dark .mobile-bottom-nav a:hover, .dark .mobile-bottom-nav a.active { color: #60a5fa; }
.dark .progress-bar { background-color: #4b5563; }.dark .calendar-day:hover { background-color: #374151; }
.dark .bg-white { background-color: #1f2937; }.dark .bg-gray-50 { background-color: #111827; }.dark .bg-gray-100 { background-color: #374151; }
.dark .text-gray-900 { color: #f3f4f6; }.dark .text-gray-800 { color: #f3f4f6; }.dark .text-gray-700 { color: #d1d5db; }.dark .text-gray-600 { color: #9ca3af; }.dark .text-gray-500 { color: #9ca3af; }.dark .text-gray-400 { color: #9ca3af; }
.dark .text-blue-600 { color: #60a5fa; }.dark .text-green-600 { color: #34d399; }.dark .text-purple-600 { color: #a78bfa; }.dark .text-yellow-600 { color: #fbbf24; }
.dark .border-gray-200 { border-color: #374151; }.dark .divide-gray-200 > * + * { border-color: #374151; }
.dark .hover\:bg-gray-50:hover { background-color: #374151; }.dark .hover\:bg-gray-100:hover { background-color: #374151; }.dark .hover\:bg-blue-50:hover { background-color: #374151; }.dark .hover\:text-blue-600:hover { color: #60a5fa; }
.dark input, .dark select, .dark textarea { background-color: #1f2937; border-color: #4b5563; color: #f3f4f6; }
.dark .badge-open { background-color: #064e3b; color: #a7f3d0; }.dark .badge-upcoming { background-color: #1e3a5f; color: #93c5fd; }.dark .badge-closed { background-color: #450a0a; color: #fca5a5; }.dark .badge-listed { background-color: #3b0764; color: #d8b4fe; }
.dark .dark\:text-white { color: #ffffff; }.dark .dark\:text-gray-100 { color: #f3f4f6; }.dark .dark\:text-gray-300 { color: #d1d5db; }.dark .dark\:text-gray-400 { color: #9ca3af; }
.dark .dark\:text-blue-400 { color: #60a5fa; }.dark .dark\:text-green-400 { color: #34d399; }.dark .dark\:text-purple-400 { color: #a78bfa; }.dark .dark\:text-red-400 { color: #f87171; }.dark .dark\:text-yellow-400 { color: #fbbf24; }
.dark .dark\:bg-gray-700 { background-color: #374151; }.dark .dark\:bg-gray-800 { background-color: #1f2937; }.dark .dark\:bg-blue-900 { background-color: #1e3a5f; }.dark .dark\:bg-green-900 { background-color: #064e3b; }.dark .dark\:bg-purple-900 { background-color: #3b0764; }
.dark .dark\:border-gray-700 { border-color: #374151; }.dark .dark\:hover\:text-blue-400:hover { color: #60a5fa; }.dark .dark\:hover\:bg-gray-700:hover { background-color: #374151; }

/* ===== RESPONSIVE TABLE ===== */
@media (max-width: 767px) { table { font-size: 0.8125rem; } .overflow-x-auto table { min-width: 600px; } }