/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************/
@import url('https://unpkg.com/tachyons@4.12.0/css/tachyons.min.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  /* Light theme */
  --bg: #f8fafc;
  --bg-alt: #eef2f7;
  --surface: #ffffff;
  --panel: #ffffff;
  --card: #ffffff;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #0f172a;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --link: #2563eb;
  --link-hover: #1d4ed8;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --success: #16a34a;
  --danger: #dc2626;
  --warning: #f59e0b;
  --shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

[data-theme='dark'] {
  color-scheme: dark;
  --bg: #0b1220;
  --bg-alt: #0f172a;
  --surface: #111827;
  --panel: #111827;
  --card: #111827;
  --border: #1f2937;
  --border-strong: #334155;
  --text: #e5e7eb;
  --text-muted: #cbd5e1;
  --text-subtle: #94a3b8;
  --link: #2563eb;
  --link-hover: #1d4ed8;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --success: #22c55e;
  --danger: #f87171;
  --warning: #f59e0b;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* Overrides for utility classes (Tailwind/Tachyons) in dark mode */
/* Custom Scrollbar Styling */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: var(--bg-alt);
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--text-subtle);
}

[data-theme='dark'] .custom-scrollbar::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

[data-theme='dark'] .custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--border-strong);
}

[data-theme='dark'] .custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Firefox scrollbar */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) var(--bg-alt);
}

[data-theme='dark'] .custom-scrollbar {
  scrollbar-color: var(--border-strong) var(--bg-alt);
}

[data-theme='dark'] .bg-white {
  background-color: var(--panel) !important;
  color: var(--text) !important;
}

[data-theme='dark'] .bg-gray-50 {
  background-color: var(--bg) !important;
}

[data-theme='dark'] .text-gray-700,
[data-theme='dark'] .text-gray-600,
[data-theme='dark'] .text-gray-500 {
  color: var(--text-subtle) !important;
}

[data-theme='dark'] .border,
[data-theme='dark'] .border-gray-200,
[data-theme='dark'] .ba,
[data-theme='dark'] .b--black-20 {
  border-color: var(--border) !important;
}

[data-theme='dark'] .shadow,
[data-theme='dark'] .shadow-lg,
[data-theme='dark'] .shadow-md,
[data-theme='dark'] .shadow-4 {
  box-shadow: var(--shadow) !important;
}

* {
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  transition: background 0.2s ease, color 0.2s ease;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

.brand-color {
  color: var(--link);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}


