@import "https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Roboto+Condensed:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-color: #f5f7fb;
  --bg-secondary: #fff;
  --bg-tertiary: #f0f2f8;
  --text-primary: #1a1f36;
  --text-secondary: #4e5d78;
  --text-muted: #8a94a6;
  --border-color: #e3e8ef;
  --border-subtle: #0000000a;
  --primary-color: #4361ee;
  --primary-hover: #3a56d4;
  --primary-glow: #4361ee1f;
  --primary-light: #4361ee0f;
  --success-color: #059669;
  --success-bg: #05966914;
  --error-color: #e11d48;
  --error-bg: #e11d4814;
  --warning-color: #d97706;
  --card-bg: #ffffffb8;
  --glass-border: #ffffff80;
  --glass-shadow: 0 1px 3px #0000000a, 0 4px 24px #0000000a;
  --header-bg: #ffffffe0;
  --sidebar-width: 280px;
  --header-height: 64px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Roboto Condensed", "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
}

[data-theme="dark"] {
  --bg-color: #0c111d;
  --bg-secondary: #151c2c;
  --bg-tertiary: #1a2236;
  --text-primary: #e8ecf4;
  --text-secondary: #8b95a9;
  --text-muted: #5a6478;
  --border-color: #1f2a3d;
  --border-subtle: #ffffff0a;
  --primary-color: #6b8aff;
  --primary-hover: #5a7af0;
  --primary-glow: #6b8aff26;
  --primary-light: #6b8aff14;
  --success-color: #10b981;
  --success-bg: #10b9811f;
  --error-color: #fb7185;
  --error-bg: #fb71851f;
  --warning-color: #f59e0b;
  --card-bg: #151c2cb3;
  --glass-border: #ffffff0f;
  --glass-shadow: 0 1px 3px #0003, 0 4px 24px #0003;
  --header-bg: #0c111deb;
}

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

html, body {
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: clip scroll;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -.01em;
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.6;
  transition: background-color .3s, color .3s;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -.02em;
  line-height: 1.3;
}

.glass {
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  transition: box-shadow .25s, transform .25s;
}

.glass:hover {
  box-shadow: 0 2px 6px #0000000f, 0 8px 32px #0000000f;
}

[data-theme="dark"] .glass:hover {
  box-shadow: 0 2px 6px #0000004d, 0 8px 32px #0000004d;
}

.layout-wrapper {
  min-height: 100vh;
  display: flex;
}

.main-content {
  margin-left: var(--sidebar-width);
  flex-direction: column;
  flex: 1;
  min-width: 0;
  min-height: 100dvh;
  display: flex;
}

.page-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 28px;
}

.page-container > * {
  min-width: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 1024px) {
  .main-content {
    margin-left: 88px;
  }

  .page-container {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: clip;
  }

  .main-content {
    margin-left: 0 !important;
  }

  .page-container {
    padding: 16px 12px;
  }

  .mobile-overlay {
    z-index: 150;
    -webkit-backdrop-filter: blur(2px);
    background: #00000080;
    position: fixed;
    inset: 0;
  }

  .time-filters {
    flex-wrap: wrap !important;
  }

  .tabs {
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    display: flex;
    overflow-x: auto;
    gap: 10px !important;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-item {
    flex: none;
  }

  .table-wrapper {
    -webkit-overflow-scrolling: touch;
    margin-inline: -4px;
    padding-inline: 4px;
    overflow-x: auto;
  }

  .data-table {
    min-width: 600px;
  }

  .overview-grid, .chart-grid {
    grid-template-columns: 1fr !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: .35s forwards fadeIn;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

.text-success {
  color: var(--success-color);
}

.text-error {
  color: var(--error-color);
}

.text-warning {
  color: var(--warning-color);
}

.bg-success {
  background-color: var(--success-bg);
}

.bg-error {
  background-color: var(--error-bg);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.heatmap-wrapper {
  min-height: 280px;
}

.cal-grid {
  gap: 3px;
  min-width: 0;
  display: grid;
}

.month-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.year-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(64px, auto);
}

@media (max-width: 768px) {
  .month-grid {
    gap: 2px;
  }

  .year-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cal-h {
  text-align: center;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 500;
}

.cal-cell {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  border: 1px solid #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  transition: transform .15s, border-color .15s;
  display: flex;
  position: relative;
  overflow: hidden;
  container-type: inline-size;
}

.cal-cell:not(.empty):hover {
  border-color: var(--border-color);
  transform: scale(1.04);
}

.cal-cell.empty {
  background: none;
  border-color: #0000;
}

.year-cell {
  min-height: 64px;
}

.cal-day {
  opacity: .7;
  font-size: 10px;
  font-weight: 500;
  position: absolute;
  top: 3px;
  left: 5px;
}

.cal-val {
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  font-size: clamp(8px, 17cqw, 12px);
  font-weight: 600;
  font-family: var(--font-mono);
  word-break: break-word;
  margin-top: 13px;
  padding: 0 3px;
  overflow: hidden;
}

.bg-error-glow {
  background: var(--error-bg);
  border-color: #e8443a2e;
}

.bg-success-glow {
  background: var(--success-bg);
  border-color: #0cce6b2e;
}

.bg-muted-glow {
  background: var(--bg-tertiary);
  border-color: #0000;
}

.data-table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  font-size: 13px;
}

.data-table th, .data-table td {
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 16px;
}

.data-table th {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--bg-tertiary);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  position: sticky;
  top: 0;
}

.data-table th:first-child {
  border-top-left-radius: var(--radius-md);
}

.data-table th:last-child {
  border-top-right-radius: var(--radius-md);
}

.data-table tbody tr {
  transition: background .15s;
}

.data-table tbody tr:hover {
  background: var(--primary-light);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.tabs {
  border-bottom: 1px solid var(--border-color);
}

.tab-item {
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}

.tab-item:hover {
  color: var(--text-primary);
}

.tab-item.active {
  color: var(--primary-color);
  font-weight: 600;
}

.tab-item.active:after {
  content: "";
  background: var(--primary-color);
  border-radius: 1px;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 4px;
  right: 4px;
}

.account-badge {
  background: var(--primary-light);
  color: var(--primary-color);
  letter-spacing: .02em;
  border-radius: 100px;
  align-items: center;
  max-width: 100%;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

/*# sourceMappingURL=src_app_globals_91e4631d.css.map*/