/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --nl-bg: #f3f6fb;
  --nl-surface: #fff;
  --nl-primary: #0f4c81;
  --nl-primary-2: #1d6fb0;
  --nl-text: #0f172a;
  --nl-muted: #64748b;
  --nl-border: #dbe4f0;
  --nl-shadow: 0 10px 30px #0f4c811a;
  --nl-radius: 14px;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--nl-bg);
  color: var(--nl-text);
  margin: 0;
  padding: 0;
  font-family: Segoe UI, Roboto, Arial, sans-serif;
}

.nl-wrap {
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  display: grid;
}

.nl-sidebar {
  background: linear-gradient(180deg, var(--nl-primary), #0c3d66);
  color: #fff;
  z-index: 30;
  height: 100vh;
  padding: 20px 14px;
  position: sticky;
  top: 0;
}

.nl-brand {
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 700;
}

.nl-nav {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.nl-link {
  color: #e8f1fb;
  border-radius: 10px;
  padding: 11px 12px;
  text-decoration: none;
  transition: all .2s;
}

.nl-link:hover {
  color: #fff;
  background: #ffffff1f;
}

.nl-link.active {
  color: #fff;
  background: #fff3;
  font-weight: 600;
}

.nl-main {
  min-width: 0;
}

.nl-topbar {
  background: var(--nl-surface);
  border-bottom: 1px solid var(--nl-border);
  z-index: 20;
  align-items: center;
  gap: 10px;
  height: 62px;
  padding: 0 16px;
  display: flex;
  position: sticky;
  top: 0;
}

.nl-content {
  padding: 16px;
}

.nl-menu-btn {
  border: 1px solid var(--nl-border);
  background: #fff;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: none;
}

.nl-backdrop {
  display: none;
}

.nl-card {
  background: var(--nl-surface);
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  box-shadow: var(--nl-shadow);
  padding: 16px;
}

.nl-grid {
  gap: 12px;
  display: grid;
}

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

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

@media (max-width: 980px) {
  .nl-grid-3, .nl-grid-2 {
    grid-template-columns: 1fr;
  }
}

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

input, select, textarea {
  border: 1px solid var(--nl-border);
  background: #fff;
  border-radius: 10px;
  outline: none;
  width: 100%;
  padding: 10px 12px;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--nl-primary-2);
  box-shadow: 0 0 0 3px #1d6fb026;
}

button {
  background: var(--nl-primary);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
}

button:hover {
  background: var(--nl-primary-2);
}

button:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.btn-soft {
  color: #0f4c81;
  background: #e8f1fb;
  border: 1px solid #c7daef;
}

.btn-danger {
  background: #c0392b;
}

.btn-success {
  background: #1f8a4c;
}

.nl-table-wrap {
  border: 1px solid var(--nl-border);
  background: #fff;
  border-radius: 12px;
  overflow: auto;
}

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

th, td {
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid #edf2f8;
  padding: 10px;
}

th {
  color: var(--nl-muted);
  font-size: .88rem;
  font-weight: 700;
}

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

@media (max-width: 980px) {
  .nl-wrap {
    grid-template-columns: 1fr;
  }

  .nl-sidebar {
    width: 260px;
    transition: all .25s;
    position: fixed;
    left: -280px;
  }

  .nl-sidebar.open {
    left: 0;
  }

  .nl-menu-btn {
    justify-content: center;
    align-items: center;
    display: inline-flex;
  }

  .nl-backdrop {
    z-index: 25;
    background: #02061759;
    display: block;
    position: fixed;
    inset: 0;
  }

  .nl-content {
    padding: 12px;
  }
}

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