/* [project]/Documents/senkredi/senkredi-backoffice/app/globals.css [app-client] (css) */
:root {
  --bg: #0b0f14;
  --surface: #121821;
  --surface-2: #18202b;
  --border: #2a3441;
  --text: #eef2f7;
  --muted: #98a6b5;
  --green: #1f9d66;
  --green-2: #23b371;
  --red: #d64545;
  --yellow: #d8a328;
  --blue: #4a8cff;
  --shadow: 0 18px 45px #0000003d;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  color: var(--text);
  background: linear-gradient(#0b0f14 0%, #0f141c 100%);
  margin: 0;
  padding: 0;
  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;
}

input, select, textarea {
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  background: #0f141c;
  border-radius: 12px;
  padding: .8rem .9rem;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

button {
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  padding: .8rem 1rem;
  transition: transform .15s, opacity .15s, background .15s;
}

button:hover {
  transform: translateY(-1px);
}

button:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

.app-shell {
  min-height: 100vh;
}

.auth-shell {
  place-items: center;
  min-height: 100vh;
  padding: 2rem;
  display: grid;
}

.auth-card {
  border: 1px solid var(--border);
  width: min(460px, 100%);
  box-shadow: var(--shadow);
  background: #121821f2;
  border-radius: 24px;
  padding: 2rem;
}

.auth-card h1 {
  margin: 0 0 .5rem;
  font-size: 2rem;
}

.auth-card p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

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

.sidebar {
  border-right: 1px solid var(--border);
  background: #0c1016eb;
  height: 100vh;
  padding: 1.25rem;
  position: sticky;
  top: 0;
}

.brand {
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 1.75rem;
  display: flex;
}

.brand strong {
  font-size: 1.2rem;
}

.brand span {
  color: var(--muted);
  font-size: .92rem;
}

.nav-list {
  flex-direction: column;
  gap: .55rem;
  display: flex;
}

.nav-link {
  color: #d8e1ea;
  border: 1px solid #0000;
  border-radius: 14px;
  padding: .9rem 1rem;
}

.nav-link.active {
  color: #fff;
  background: #1f9d6624;
  border-color: #1f9d6652;
}

.sidebar-footer {
  flex-direction: column;
  gap: .8rem;
  display: flex;
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
}

.main {
  padding: 1.5rem;
}

.topbar {
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.topbar h1 {
  margin: 0;
  font-size: 1.9rem;
}

.topbar p {
  color: var(--muted);
  margin: .4rem 0 0;
}

.topbar-meta {
  flex-direction: column;
  align-items: flex-end;
  gap: .45rem;
  display: flex;
}

.container-stack {
  flex-direction: column;
  gap: 1.25rem;
  display: flex;
}

.card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #121821f2;
  border-radius: 22px;
  padding: 1.2rem;
}

.card h2, .card h3 {
  margin-top: 0;
}

.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.metric {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.metric-label {
  color: var(--muted);
  font-size: .92rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
}

.metric-subtle {
  color: var(--muted);
  font-size: .9rem;
}

.toolbar {
  grid-template-columns: 1.3fr .7fr .8fr auto;
  align-items: end;
  gap: .8rem;
  display: grid;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.form-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.field {
  flex-direction: column;
  gap: .45rem;
  display: flex;
}

.field label {
  color: var(--muted);
  font-size: .92rem;
}

.btn-primary {
  background: linear-gradient(180deg, var(--green-2), var(--green));
  color: #fff;
}

.btn-secondary {
  color: #fff;
  border: 1px solid var(--border);
  background: #1b2430;
}

.btn-danger {
  color: #ffd4d4;
  background: #d6454529;
  border: 1px solid #d6454559;
}

.btn-ghost {
  color: var(--muted);
  border: 1px solid var(--border);
  background: none;
}

.btn-small {
  border-radius: 10px;
  padding: .55rem .8rem;
  font-size: .92rem;
}

.table-wrap {
  overflow-x: auto;
}

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

.table th, .table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ffffff0f;
  padding: .9rem .75rem;
}

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

.table td strong {
  margin-bottom: .25rem;
  display: block;
}

.badge {
  white-space: nowrap;
  border: 1px solid #0000;
  border-radius: 999px;
  align-items: center;
  gap: .45rem;
  padding: .32rem .6rem;
  font-size: .82rem;
  font-weight: 600;
  display: inline-flex;
}

.badge.pending {
  color: #ffd876;
  background: #d8a32824;
  border-color: #d8a3284d;
}

.badge.approved, .badge.active, .badge.pro {
  color: #a8ffd5;
  background: #1f9d6629;
  border-color: #1f9d664d;
}

.badge.rejected, .badge.inactive, .badge.expired {
  color: #ffc0c0;
  background: #d6454524;
  border-color: #d6454547;
}

.badge.free, .badge.member {
  color: #c8dcff;
  background: #4a8cff1f;
  border-color: #4a8cff42;
}

.muted {
  color: var(--muted);
}

.actions {
  flex-wrap: wrap;
  gap: .55rem;
  display: flex;
}

.page-grid {
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  display: grid;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.kv {
  grid-template-columns: 170px 1fr;
  gap: .5rem .75rem;
  display: grid;
}

.kv div:nth-child(odd) {
  color: var(--muted);
}

.notice {
  color: #dce8ff;
  background: #4a8cff14;
  border: 1px solid #4a8cff47;
  border-radius: 14px;
  padding: .95rem 1rem;
}

.error {
  color: #ffd1d1;
  background: #d645451f;
  border: 1px solid #d6454559;
  border-radius: 14px;
  padding: .9rem 1rem;
}

.success {
  color: #beffd9;
  background: #1f9d661f;
  border: 1px solid #1f9d6659;
  border-radius: 14px;
  padding: .9rem 1rem;
}

.footer-note {
  color: var(--muted);
  font-size: .85rem;
}

@media (max-width: 1120px) {
  .cards-grid, .toolbar, .page-grid, .detail-grid, .form-grid, .form-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .grid-two {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    height: auto;
    position: static;
  }

  .sidebar-footer {
    margin-top: 1rem;
    position: static;
  }

  .topbar {
    flex-direction: column;
  }

  .topbar-meta {
    align-items: flex-start;
  }
}

/*# sourceMappingURL=Documents_senkredi_senkredi-backoffice_app_globals_0pwi52m.css.map*/