*{margin:0;padding:0;box-sizing:border-box}

body{
  font-family:'Hind Siliguri','Noto Serif Bengali',sans-serif;
  background:linear-gradient(135deg,#e8ecf1 0%,#edf0f4 50%,rgba(226,236,233,0.5) 100%);
  background-attachment:fixed;
  min-height:100vh;
  color:var(--text-secondary);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
[data-theme="dark"] body,[data-theme="dark"]{
  background:linear-gradient(135deg,#020617 0%,#0f172a 20%,#1e1b4b 42%,#134e4a 62%,#1e1b4b 80%,#0f172a 100%);
  background-attachment:fixed;
}

/* Scrollbar */
::-webkit-scrollbar{width:6px;height:6px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:#cbd5e1;border-radius:10px}
::-webkit-scrollbar-thumb:hover{background:#94a3b8}
[data-theme="dark"] ::-webkit-scrollbar-thumb{background:rgba(13,148,136,0.3)}
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover{background:rgba(13,148,136,0.5)}
#sidebar::-webkit-scrollbar{width:4px}

/* Tailwind text overrides */
.text-white{color:var(--text-primary)!important}
.text-gray-300{color:var(--text-secondary)!important}
.text-gray-400{color:var(--text-muted)!important}
.text-gray-500{color:var(--text-secondary)!important}
[data-theme="dark"] .text-white{color:#f1f5f9!important}
[data-theme="dark"] .text-gray-300{color:#cbd5e1!important}
[data-theme="dark"] .text-gray-400{color:#94a3b8!important}
[data-theme="dark"] .text-gray-500{color:#64748b!important}

/* Print */
@media print{
  .no-print{display:none!important}
  body{background:#fff!important;color:#000!important}
  #sidebar{display:none!important}
  .main-wrapper{margin-left:0!important}
}

/* Utilities */
.hidden{display:none!important}
.text-gradient{
  background:linear-gradient(135deg,#0d9488,#7c3aed);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.divider{height:1px;background:var(--border-subtle);margin:20px 0}
