* {
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f8fafc;
  color: #1f2937;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
.navbar {
  background-color: #0f172a;
  padding: 0 1.5rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.navbar__brand-icon {
  width: 28px;
  height: 28px;
  background: #2563eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}
.navbar__user {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
}
.navbar__logout {
  color: #94a3b8;
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border: 1px solid #334155;
  border-radius: 6px;
  font-size: 0.8125rem;
  transition: all 0.15s;
}
.navbar__logout:hover {
  color: #fff;
  border-color: #64748b;
  background: #1e293b;
}
.page-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.card__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__header h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.card__body {
  padding: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  line-height: 1.4;
}
.btn--primary {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.btn--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}
.btn--outline {
  background: transparent;
  color: #2563eb;
  border-color: #2563eb;
}
.btn--outline:hover {
  background: #dbeafe;
}
.btn--danger {
  background: transparent;
  color: #dc2626;
  border-color: #fecaca;
  font-size: 0.8125rem;
  padding: 0.3rem 0.65rem;
}
.btn--danger:hover {
  background: #fef2f2;
}
.btn--sm {
  font-size: 0.8125rem;
  padding: 0.3rem 0.65rem;
}
.form-group {
  margin-bottom: 1.125rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.375rem;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
  color: #111827;
}
.form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form-hint {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #6b7280;
}
.table-wrap {
  overflow-x: auto;
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
table.data-table th {
  background: #f8fafc;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}
table.data-table td {
  padding: 0.875rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
}
table.data-table tr:last-child td {
  border-bottom: none;
}
table.data-table tr:hover td {
  background: #fafafa;
}
.webhook-route {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.webhook-route__from {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 0.8rem;
  color: #2563eb;
  background: #dbeafe;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  word-break: break-all;
}
.webhook-route__arrow {
  color: #9ca3af;
  font-size: 0.75rem;
  padding-left: 0.25rem;
}
.webhook-route__to {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 0.8rem;
  color: #374151;
  word-break: break-all;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge--success {
  background: #dcfce7;
  color: #16a34a;
}
.badge--danger {
  background: #fee2e2;
  color: #dc2626;
}
.badge--warning {
  background: #fef3c7;
  color: #d97706;
}
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 1rem;
  background: #f8fafc;
}
.auth-page__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-decoration: none;
}
.auth-page__logo-icon {
  width: 44px;
  height: 44px;
  background: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
}
.auth-page__logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.5px;
}
.auth-page__desc {
  max-width: 480px;
  text-align: center;
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.auth-page__desc p {
  margin-bottom: 0.5rem;
}
.auth-page__cols {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 720px;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .auth-page__cols {
    flex-direction: column;
  }
}
.auth-page__col {
  flex: 1;
}
.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.alert--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.alert ul,
.alert ol {
  margin: 0.5rem 0 0 1.25rem;
  padding: 0;
}
.msg-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: #f8fafc;
}
.msg-page__inner {
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.msg-page__inner .card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.msg-page__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.msg-page__icon--error {
  background: #fee2e2;
  color: #dc2626;
}
.msg-page__icon--success {
  background: #dcfce7;
  color: #16a34a;
}
.msg-page__text {
  color: #374151;
  font-size: 1rem;
  line-height: 1.5;
}
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #6b7280;
}
.empty-state__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.empty-state__text {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.page-header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1.25rem 0;
}
.note {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
}
/*# sourceMappingURL=main.css.map */