/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #f7f8fb;
  color: #151922;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}

.sidebar {
  background: #111827;
  color: #f9fafb;
  padding: 28px 22px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.brand strong {
  font-size: 20px;
}

.brand span,
.nav-caption {
  color: #9ca3af;
  font-size: 13px;
}

.nav {
  display: grid;
  gap: 8px;
}

.nav a {
  border-radius: 8px;
  color: #d1d5db;
  padding: 10px 12px;
}

.nav a:hover {
  background: #1f2937;
  color: #fff;
}

.content {
  padding: 32px;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.topbar h1 {
  font-size: 28px;
  margin: 0 0 6px;
}

.topbar p {
  color: #667085;
  margin: 0;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  padding: 18px;
}

.metric-label {
  color: #667085;
  font-size: 13px;
}

.metric-value {
  color: #111827;
  display: block;
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
}

.section-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 28px 0 12px;
}

.section-title h2 {
  font-size: 18px;
  margin: 0;
}

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

.table th,
.table td {
  border-bottom: 1px solid #eef0f4;
  padding: 12px 10px;
  text-align: left;
}

.table th {
  color: #667085;
  font-size: 12px;
  font-weight: 600;
}

.badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 9px;
}

.badge.green {
  background: #dcfce7;
  color: #166534;
}

.badge.gray {
  background: #f2f4f7;
  color: #344054;
}

.form-page {
  align-items: center;
  background: #f7f8fb;
  display: flex;
  min-height: 100vh;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  max-width: 420px;
  padding: 28px;
  width: 100%;
}

.auth-card h1 {
  margin: 0 0 8px;
}

.auth-card p {
  color: #667085;
  margin: 0 0 24px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field label {
  color: #344054;
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field textarea {
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
}

.button {
  align-items: center;
  background: #111827;
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  padding: 10px 14px;
}

.button.secondary {
  background: #fff;
  border: 1px solid #d0d5dd;
  color: #344054;
}

.button.full {
  width: 100%;
}

.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #991b1b;
  margin-bottom: 14px;
  padding: 10px 12px;
}

@media (max-width: 900px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .grid.cols-4,
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}


