/* [project]/app/guide/guide.css [app-client] (css) */
:root {
  --auth-bg: #fafafa;
  --auth-card-bg: #fff;
  --auth-border: #e4e4e7;
  --auth-text-muted: #52525b;
  --auth-text-error: #b91c1c;
  --auth-text-success: #166534;
  --auth-accent: #b45309;
  --auth-accent-hover: #92400e;
  --auth-radius: 12px;
  --auth-shadow: 0 1px 3px #00000014;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--auth-bg);
  color: #18181b;
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

a {
  color: var(--auth-accent);
}

a:hover {
  color: var(--auth-accent-hover);
}

input, button, textarea {
  font: inherit;
}

.auth-page {
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 3rem 1rem;
  display: flex;
}

.auth-card {
  background: var(--auth-card-bg);
  border: 1px solid var(--auth-border);
  border-radius: var(--auth-radius);
  width: 100%;
  max-width: 400px;
  box-shadow: var(--auth-shadow);
  padding: 1.75rem;
}

.auth-title {
  letter-spacing: -.02em;
  margin: 0 0 .5rem;
  font-size: 1.375rem;
  font-weight: 600;
}

.auth-subtitle {
  color: var(--auth-text-muted);
  margin: 0 0 1.25rem;
  font-size: .9375rem;
  line-height: 1.5;
}

.auth-divider {
  color: var(--auth-text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  align-items: center;
  gap: .75rem;
  margin: 1rem 0;
  font-size: .75rem;
  display: flex;
}

.auth-divider:before, .auth-divider:after {
  content: "";
  background: var(--auth-border);
  flex: 1;
  height: 1px;
}

.brand-mark {
  align-items: center;
  gap: .625rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.brand-mark--compact {
  margin-bottom: 0;
}

.brand-mark-icon {
  color: #fff;
  letter-spacing: -.05em;
  background: linear-gradient(118deg, #7b2ff7 0%, #9d4ef8 45%, #f107a3 100%);
  border-radius: 9999px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: .625rem;
  font-weight: 700;
  display: flex;
}

.brand-mark-text {
  flex-direction: column;
  gap: .125rem;
  min-width: 0;
  display: flex;
}

.brand-mark-name {
  letter-spacing: -.02em;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.brand-mark-subtitle {
  color: var(--auth-text-muted);
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.2;
}

.dash-sidebar .brand-mark-subtitle {
  color: #a1a1aa;
}

.auth-card--wide {
  max-width: 520px;
}

.auth-form {
  gap: .875rem;
  display: grid;
}

.auth-label {
  font-size: .875rem;
  font-weight: 500;
  display: block;
}

.auth-input {
  border: 1px solid var(--auth-border);
  background: #fff;
  border-radius: 8px;
  width: 100%;
  margin-top: .35rem;
  padding: .5rem .65rem;
  display: block;
}

.auth-label select.auth-input, .auth-label textarea.auth-input {
  font: inherit;
}

.auth-label textarea.auth-input {
  resize: vertical;
  min-height: 5rem;
}

.auth-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.auth-fieldset legend.auth-label {
  margin-bottom: .35rem;
}

.auth-checkbox-group {
  gap: .5rem;
  margin-top: .35rem;
  display: grid;
}

.auth-checkbox-label {
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 400;
  display: flex;
}

.auth-checkbox-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--auth-accent);
  margin: 0;
}

.auth-radio-group {
  gap: 1rem;
  margin-top: .35rem;
  display: flex;
}

.auth-radio-label {
  cursor: pointer;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 400;
  display: flex;
}

.auth-radio-label input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--auth-accent);
  margin: 0;
}

.auth-input:focus {
  outline-offset: 0;
  border-color: var(--auth-accent);
  outline: 2px solid #b4530959;
}

.auth-btn-primary {
  background: var(--auth-accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  margin-top: .25rem;
  padding: .55rem 1rem;
  font-weight: 500;
}

.auth-btn-primary:hover:not(:disabled) {
  background: var(--auth-accent-hover);
}

.auth-btn-primary:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.auth-btn-secondary {
  border: 1px solid var(--auth-border);
  color: #18181b;
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  padding: .45rem .85rem;
}

.auth-btn-secondary:hover:not(:disabled) {
  background: #f4f4f5;
}

.auth-msg-error {
  color: var(--auth-text-error);
  margin: 0;
  font-size: .875rem;
}

.auth-msg-success {
  color: var(--auth-text-success);
  margin: 0;
  font-size: .875rem;
}

.auth-footer {
  border-top: 1px solid var(--auth-border);
  margin-top: 1.25rem;
  padding-top: 1rem;
  font-size: .9375rem;
}

.auth-muted {
  color: var(--auth-text-muted);
  font-size: .9375rem;
}

.dash-shell {
  color: #18181b;
  background: #f4f4f5;
  min-height: 100vh;
  display: flex;
}

.dash-sidebar {
  color: #fafafa;
  background: #18181b;
  border-right: 1px solid #27272a;
  flex-direction: column;
  flex-shrink: 0;
  width: 248px;
  display: flex;
}

.dash-sidebar-brand {
  letter-spacing: -.02em;
  padding: 1.25rem 1.25rem 1rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.dash-sidebar-nav {
  flex-direction: column;
  gap: 4px;
  padding: 0 .75rem;
  display: flex;
}

.dash-sidebar-link {
  color: #a1a1aa;
  border-radius: 8px;
  padding: .55rem .85rem;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
}

.dash-sidebar-link:hover {
  color: #fafafa;
  background: #ffffff0f;
}

.dash-sidebar-link.dash-sidebar-link--active {
  color: #18181b;
  background: #fafafa;
}

.dash-sidebar-footer {
  margin-top: auto;
  padding: 1rem 1.25rem 1.25rem;
}

.dash-sidebar-muted {
  color: #71717a;
  font-size: .75rem;
}

.dash-main {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.dash-topbar {
  border-bottom: 1px solid var(--auth-border);
  background: #fff;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.5rem;
  display: flex;
  box-shadow: 0 1px 2px #0000000a;
}

.dash-topbar-title {
  letter-spacing: -.02em;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.dash-topbar-right {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.dash-topbar-user {
  flex-direction: column;
  align-items: flex-end;
  max-width: 220px;
  display: flex;
}

.dash-topbar-user-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: .875rem;
  font-weight: 600;
  overflow: hidden;
}

.dash-topbar-user-email {
  color: var(--auth-text-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: .75rem;
  overflow: hidden;
}

.dash-btn-outline {
  border: 1px solid var(--auth-border);
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  padding: .45rem .85rem;
  font-size: .875rem;
  font-weight: 500;
}

.dash-btn-outline:hover {
  background: #f4f4f5;
}

.dash-body {
  flex: 1;
  padding: 1.5rem;
  overflow: auto;
}

.dash-panel {
  border: 1px solid var(--auth-border);
  border-radius: var(--auth-radius);
  max-width: 640px;
  box-shadow: var(--auth-shadow);
  background: #fff;
  padding: 1.5rem 1.75rem;
}

.dash-panel--wide {
  max-width: 720px;
}

.dash-tabs {
  border-bottom: 1px solid var(--auth-border);
  flex-wrap: wrap;
  gap: .35rem;
  margin: 1.25rem 0 1.5rem;
  padding-bottom: 0;
  display: flex;
}

.dash-tabs-btn {
  color: var(--auth-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid #0000;
  border-radius: 6px 6px 0 0;
  margin-bottom: -1px;
  padding: .55rem 1rem;
  font-size: .875rem;
  font-weight: 500;
}

.dash-tabs-btn:hover {
  color: #18181b;
  background: #f4f4f5;
}

.dash-tabs-btn.dash-tabs-btn--active {
  color: var(--auth-accent);
  border-bottom-color: var(--auth-accent);
  background: none;
}

.dash-tabs-panel {
  padding-top: .25rem;
}

.dash-tab-heading {
  margin: 0 0 .35rem;
  font-size: 1rem;
  font-weight: 600;
}

.dash-form-row {
  grid-template-columns: 1fr 1fr;
  gap: .875rem;
  display: grid;
}

.dash-upload-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  display: grid;
}

.dash-upload-slot {
  flex-direction: column;
  gap: .35rem;
  display: flex;
}

.dash-upload-label {
  font-size: .875rem;
  font-weight: 500;
}

.dash-upload-box {
  border: 1px dashed var(--auth-border);
  background: #fafafa;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  padding: 1rem;
  display: flex;
}

.dash-upload-hint {
  color: var(--auth-text-muted);
  font-size: .75rem;
}

.dash-coming-soon {
  color: var(--auth-text-muted);
  background: #f4f4f5;
  border-radius: 8px;
  margin: .5rem 0 0;
  padding: .65rem .85rem;
  font-size: .875rem;
}

.dash-panel h2 {
  margin: 0 0 .5rem;
  font-size: 1rem;
  font-weight: 600;
}

.dash-muted {
  color: var(--auth-text-muted);
  margin: 0 0 1rem;
  font-size: .9375rem;
}

.dash-muted--tight {
  margin-bottom: 0;
}

.dash-btn-primary {
  background: var(--auth-accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  display: inline-block;
}

.dash-btn-primary:hover:not(:disabled) {
  background: var(--auth-accent-hover);
}

.dash-form-grid {
  gap: .875rem;
  display: grid;
}

.dash-field label {
  font-size: .875rem;
  font-weight: 500;
  display: block;
}

.dash-field input, .dash-field textarea {
  border: 1px solid var(--auth-border);
  background: #fff;
  border-radius: 8px;
  width: 100%;
  margin-top: .35rem;
  padding: .5rem .65rem;
  display: block;
}

.dash-field input:focus, .dash-field textarea:focus {
  outline-offset: 0;
  border-color: var(--auth-accent);
  outline: 2px solid #b4530959;
}

@media (max-width: 768px) {
  .dash-shell {
    flex-direction: column;
  }

  .dash-sidebar {
    flex-flow: wrap;
    align-items: center;
    width: 100%;
    padding: .5rem 0;
  }

  .dash-sidebar-brand {
    padding: .5rem 1rem;
  }

  .dash-sidebar-nav {
    flex-flow: wrap;
    flex: 1;
    padding: 0 .5rem;
  }

  .dash-sidebar-footer {
    display: none;
  }

  .dash-topbar {
    flex-wrap: wrap;
    padding: .75rem 1rem;
  }

  .dash-topbar-user {
    align-items: flex-start;
    max-width: 100%;
  }

  .dash-form-row {
    grid-template-columns: 1fr;
  }
}

.dash-approval {
  margin-bottom: 1rem;
}

.dash-status-badge {
  text-transform: capitalize;
  border-radius: 999px;
  padding: .2rem .6rem;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
}

.dash-status-badge--draft {
  color: #374151;
  background: #e5e7eb;
}

.dash-status-badge--pending_review {
  color: #92400e;
  background: #fef3c7;
}

.dash-status-badge--approved {
  color: #065f46;
  background: #d1fae5;
}

.dash-status-badge--rejected {
  color: #991b1b;
  background: #fee2e2;
}

.dash-status-badge--suspended {
  color: #6b7280;
  background: #f3f4f6;
}

.dash-approval-notes {
  margin-top: .5rem;
}

.dash-form-actions-row {
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .5rem;
  display: flex;
}

.dash-form-actions {
  margin-top: 1rem;
}

.dash-btn-sm {
  padding: .35rem .75rem;
  font-size: .875rem;
}

.dash-approval-history {
  margin-top: 1rem;
}

.dash-approval-history-panel {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: .75rem;
  padding: .75rem;
}

.dash-approval-history-list {
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.dash-approval-history-item {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: .75rem;
}

.dash-approval-history-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dash-approval-history-item-header {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  display: flex;
}

.dash-approval-history-note {
  margin: .5rem 0 0;
}

.dash-doc-preview {
  object-fit: cover;
  border-radius: 8px;
  max-width: 200px;
  max-height: 140px;
  margin-top: .5rem;
}

.dash-doc-preview--round {
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

.dash-doc-grid {
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
  display: flex;
}

.dash-tab-header-row {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.dash-vehicle-list {
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.dash-vehicle-card {
  border: 1px solid var(--dash-border, #e5e7eb);
  border-radius: 10px;
  padding: 1rem;
}

.dash-btn-danger {
  color: #991b1b;
  cursor: pointer;
  background: #fee2e2;
  border: none;
  border-radius: 8px;
  padding: .5rem 1rem;
}

.dash-banner {
  margin: 1rem 0;
}

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