/* [next]/internal/font/google/geist_a71539c9.module.css [app-client] (css) */
@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/8a480f0b521d4e75-s.8e0177b5.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/7178b3e590c64307-s.b97b3418.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/caa3a2e1cccd8315-s.p.853070df.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Geist Fallback;
  src: local(Arial);
  ascent-override: 95.94%;
  descent-override: 28.16%;
  line-gap-override: 0.0%;
  size-adjust: 104.76%;
}

.geist_a71539c9-module__T19VSG__className {
  font-family: Geist, Geist Fallback;
  font-style: normal;
}

.geist_a71539c9-module__T19VSG__variable {
  --font-geist-sans: "Geist", "Geist Fallback";
}

/* [next]/internal/font/google/geist_mono_8d43a2aa.module.css [app-client] (css) */
@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/4fa387ec64143e14-s.c1fdd6c2.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/bbc41e54d2fcbd21-s.799d8ef8.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Geist Mono;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/797e433ab948586e-s.p.dbea232f.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Geist Mono Fallback;
  src: local(Arial);
  ascent-override: 74.67%;
  descent-override: 21.92%;
  line-gap-override: 0.0%;
  size-adjust: 134.59%;
}

.geist_mono_8d43a2aa-module__8Li5zG__className {
  font-family: Geist Mono, Geist Mono Fallback;
  font-style: normal;
}

.geist_mono_8d43a2aa-module__8Li5zG__variable {
  --font-geist-mono: "Geist Mono", "Geist Mono Fallback";
}

/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --primary-color: #2563eb;
  --primary-hover: #1d4ed8;
  --bg-color: #f3f4f6;
  --card-bg: #fff;
  --text-color: #1f2937;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --sidebar-width: 250px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

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

.flex {
  display: flex;
}

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

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

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

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

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.p-4 {
  padding: 1rem;
}

.p-8 {
  padding: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.card {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px #0000001a;
}

.input-group {
  margin-bottom: 1rem;
}

.label {
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

.input {
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  width: 100%;
  padding: .75rem;
  font-size: 1rem;
  transition: border-color .2s;
}

.input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px #2563eb1a;
}

.btn {
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  transition: background-color .2s;
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-hover);
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

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

.font-bold {
  font-weight: 700;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-red {
  color: #dc2626;
}

.bg-red-light {
  background-color: #fee2e2;
}

.border-red {
  border: 1px solid #fca5a5;
}

.rounded {
  border-radius: .25rem;
}

.admin-container {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  width: var(--sidebar-width);
  color: #fff;
  background-color: #111827;
  flex-shrink: 0;
  height: 100vh;
  position: fixed;
  overflow-y: auto;
}

.sidebar-header {
  height: var(--header-height);
  border-bottom: 1px solid #374151;
  align-items: center;
  padding: 0 1.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
}

.nav-link {
  color: #d1d5db;
  padding: .75rem 1.5rem;
  transition: background .2s, color .2s;
  display: block;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background-color: #374151;
}

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

.top-header {
  height: var(--header-height);
  border-bottom: 1px solid var(--border-color);
  background: #fff;
  justify-content: flex-end;
  align-items: center;
  padding: 0 2rem;
  display: flex;
}

.page-content {
  padding: 2rem;
}

.dashboard-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  display: grid;
}

.stat-card {
  background: #fff;
  border-radius: .5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px #0000001a;
}

.stat-value {
  color: var(--primary-color);
  margin-top: .5rem;
  font-size: 2rem;
  font-weight: bold;
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .875rem;
}

.table-container {
  background: #fff;
  border-radius: .5rem;
  overflow-x: auto;
  box-shadow: 0 1px 3px #0000001a;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem;
}

th {
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  background-color: #f9fafb;
  font-size: .75rem;
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

.status-badge {
  border-radius: 9999px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

.status-new {
  color: #1e40af;
  background: #dbeafe;
}

.status-active {
  color: #166534;
  background: #dcfce7;
}

.status-closed {
  color: #374151;
  background: #e5e7eb;
}

.status-rejected {
  color: #991b1b;
  background: #fee2e2;
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__0f0ba101._.css.map*/