/* public/css/notify.css -- matches InQ Portal's dark mode theme */

:root {
  --bg-page: #0b1220;
  --bg-card: #111827;
  --bg-input: #1a2332;
  --bg-sidebar: #111827;
  --border: #2d3748;
  --border-light: #1f2937;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --text-dim: #4b5563;
  --blue: #1d4ed8;
  --blue-light: #93c5fd;
  --green: #16a34a;
  --green-light: #86efac;
  --red: #f87171;
  --red-light: #fca5a5;
  --purple: #a78bfa;
}

* { box-sizing: border-box; }

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

a { color: var(--blue-light); }

button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

.btn-primary {
  padding: 9px 16px;
  border-radius: 8px;
  border: none;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.btn-primary:hover { opacity: 0.92; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-secondary {
  padding: 9px 16px;
  border-radius: 8px;
  border: 0.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
}
.btn-secondary:hover { background: var(--bg-input); }

.btn-success {
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-success:disabled { opacity: 0.5; cursor: not-allowed; }

.input-field {
  width: 100%;
  background: var(--bg-input);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 13px;
  color: var(--text-primary);
}

.field-label {
  font-size: 12px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 4px;
}

.card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.error-msg {
  color: var(--red-light);
  font-size: 12.5px;
  margin-top: 8px;
}

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

.sidebar {
  width: 200px;
  flex-shrink: 0;
  background: var(--bg-sidebar);
  border-right: 0.5px solid var(--border);
  padding: 20px 12px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 20px;
  margin-bottom: 8px;
  border-bottom: 0.5px solid var(--border-light);
}

.sidebar-logo .badge {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

.sidebar-logo span {
  font-size: 13px;
  color: var(--text-secondary);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 2px;
  text-decoration: none;
  cursor: pointer;
}

.nav-item.active {
  background: rgba(29, 78, 216, 0.15);
  color: var(--blue-light);
}

.nav-item:hover:not(.active) {
  background: var(--bg-input);
}

.main-content {
  flex: 1;
  min-width: 0;
  padding: 24px 28px;
}
