/* [project]/apps/web/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --background: #f5f5f5;
  --foreground: #111;
  --muted: #6b6b6b;
  --panel: #fff;
  --border: #e0e0e0;
  --accent: #c00;
  --accent-hover: #a00;
  --accent-light: #fff0f0;
  --danger: #c00;
  --danger-light: #fff0f0;
  --success: #1a7a3c;
  --success-light: #edfdf3;
  --warning: #b45309;
  --warning-light: #fffbeb;
  --nav-height: 64px;
  --topbar-height: 54px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
  --shadow-md: 0 4px 6px #00000012, 0 2px 4px #0000000f;
  --shadow-lg: 0 10px 15px #0000001a, 0 4px 6px #0000000d;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  flex-direction: column;
  min-height: 100dvh;
  display: flex;
}

.page-content {
  padding: 16px;
  padding-top: calc(var(--topbar-height) + 16px);
  padding-bottom: calc(var(--nav-height) + 24px);
  flex: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.bottom-nav {
  height: var(--nav-height);
  z-index: 100;
  background: #fff;
  border-top: 2px solid #111;
  justify-content: space-around;
  align-items: center;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -2px 12px #00000014;
}

.nav-item {
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: 2px;
  min-width: 0;
  padding: 8px 6px;
  font-size: 10px;
  font-weight: 500;
  transition: color .15s;
  display: flex;
}

.nav-item.active {
  color: var(--accent);
}

.nav-item svg {
  stroke-width: 1.8px;
  width: 22px;
  height: 22px;
}

.nav-fab {
  flex-direction: column;
  align-items: center;
  gap: 2px;
  display: flex;
}

.nav-fab-btn {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin-top: -20px;
  transition: background .15s, transform .1s;
  display: flex;
  box-shadow: 0 4px 14px #cc000073;
}

.nav-fab-btn:active {
  transform: scale(.95);
}

.nav-fab-label {
  color: var(--accent);
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
}

.page-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 4px;
  display: flex;
}

.page-title {
  color: var(--foreground);
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.page-subtitle {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 14px;
}

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

.card + .card {
  margin-top: 12px;
}

.stat-grid {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  display: grid;
}

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

.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
}

.stat-value {
  color: var(--foreground);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.stat-value.green {
  color: var(--success);
}

.search-bar {
  margin-bottom: 16px;
  position: relative;
}

.search-bar input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  appearance: none;
  outline: none;
  width: 100%;
  padding: 12px 16px 12px 44px;
  font-size: 16px;
  transition: border-color .15s;
}

.search-bar input:focus {
  border-color: var(--accent);
}

.search-bar svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.section-heading {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 20px 0 10px;
  font-size: 13px;
  font-weight: 600;
}

.vehicle-list {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.vehicle-item {
  background: var(--panel);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow);
  text-align: left;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  transition: border-color .15s, box-shadow .15s;
  display: flex;
}

.vehicle-item:hover, .vehicle-item:active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.vehicle-plate-badge {
  color: #fff;
  border-radius: var(--radius-sm);
  letter-spacing: .08em;
  text-align: center;
  border-bottom: 3px solid var(--accent);
  background: #111;
  min-width: 80px;
  padding: 6px 12px;
  font-family: Courier New, monospace;
  font-size: 15px;
  font-weight: 700;
}

.vehicle-meta {
  flex: 1;
  min-width: 0;
}

.vehicle-meta-time {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.vehicle-meta-note {
  color: var(--muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 2px 0 0;
  font-size: 12px;
  overflow: hidden;
}

.vehicle-chevron {
  color: var(--muted);
  flex-shrink: 0;
}

.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
}

.empty-state svg {
  opacity: .4;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.empty-state p {
  margin: 0;
  font-size: 15px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  color: var(--foreground);
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.form-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--panel);
  appearance: none;
  outline: none;
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  transition: border-color .15s;
  display: block;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input.plate-input {
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: Courier New, monospace;
  font-size: 22px;
  font-weight: 700;
}

.form-input.error {
  border-color: var(--danger);
}

.form-error {
  color: var(--danger);
  margin-top: 4px;
  font-size: 13px;
}

.form-hint {
  color: var(--muted);
  margin-top: 4px;
  font-size: 13px;
}

.btn {
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity .15s, transform .1s;
  display: flex;
}

.btn:active {
  transform: scale(.98);
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

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

.btn-outline {
  color: var(--accent);
  border: 1.5px solid var(--accent);
  background: none;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

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

.btn-sm {
  width: auto;
  padding: 8px 14px;
  font-size: 14px;
}

.payment-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
  display: grid;
}

.payment-option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--panel);
  color: var(--foreground);
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all .15s;
  display: flex;
}

.payment-option svg {
  width: 24px;
  height: 24px;
}

.payment-option.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent);
}

.summary-row {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 15px;
  display: flex;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row .label {
  color: var(--muted);
  font-weight: 500;
}

.summary-row .value {
  color: var(--foreground);
  font-weight: 600;
}

.summary-row.total {
  margin-top: 4px;
  padding: 16px 0 8px;
}

.summary-row.total .label {
  color: var(--foreground);
  font-size: 16px;
  font-weight: 700;
}

.summary-row.total .value {
  color: var(--success);
  font-size: 26px;
  font-weight: 800;
}

.history-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  display: flex;
}

.history-plate {
  letter-spacing: .06em;
  font-family: Courier New, monospace;
  font-size: 16px;
  font-weight: 700;
}

.history-meta {
  color: var(--muted);
  margin-top: 3px;
  font-size: 12px;
}

.history-amount {
  color: var(--success);
  font-size: 16px;
  font-weight: 700;
}

.history-method {
  color: var(--muted);
  text-align: right;
  margin-top: 2px;
  font-size: 11px;
}

.section-card {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  overflow: hidden;
}

.section-card-title {
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 14px 16px 12px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.section-card-body {
  padding: 16px;
}

.tariff-item {
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  display: flex;
}

.tariff-item:last-child {
  border-bottom: none;
}

.tariff-badge {
  background: var(--accent-light);
  color: var(--accent);
  text-transform: uppercase;
  border-radius: 20px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
}

.tariff-badge.active-badge {
  background: var(--success-light);
  color: var(--success);
}

.tariff-details {
  flex: 1;
}

.tariff-rate {
  font-size: 16px;
  font-weight: 700;
}

.tariff-meta {
  color: var(--muted);
  font-size: 13px;
}

.pin-screen {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 48px 24px;
  display: flex;
}

.pin-icon {
  background: var(--accent-light);
  width: 64px;
  height: 64px;
  color: var(--accent);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pin-screen h2 {
  text-align: center;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.pin-screen p {
  color: var(--muted);
  text-align: center;
  margin: 0;
  font-size: 14px;
}

.pin-input-row {
  gap: 10px;
  width: 100%;
  max-width: 280px;
  display: flex;
}

.pin-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  letter-spacing: .2em;
  -webkit-text-security: disc;
  outline: none;
  flex: 1;
  padding: 14px;
  font-size: 24px;
}

.pin-input:focus {
  border-color: var(--accent);
}

.back-link {
  color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  border: 2px solid #fff6;
  border-top-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  animation: .7s linear infinite spin;
}

.spinner.dark {
  border-color: #00000026;
  border-top-color: var(--accent);
}

.alert {
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
}

.alert-success {
  background: var(--success-light);
  color: var(--success);
  border: 1px solid #c6f6d5;
}

.alert-error {
  background: var(--danger-light);
  color: var(--danger);
  border: 1px solid #fed7d7;
}

.lang-toggle {
  background: var(--background);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  display: flex;
  overflow: hidden;
}

.lang-btn {
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  flex: 1;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: background .15s, color .15s;
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

.no-pin-hint {
  color: var(--muted);
  text-align: center;
  padding: 8px 0 0;
  font-size: 13px;
}

.input-row {
  align-items: flex-end;
  gap: 10px;
  display: flex;
}

.input-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.quick-card {
  background: var(--panel);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  width: 100%;
  box-shadow: var(--shadow);
  align-items: center;
  gap: 14px;
  padding: 16px;
  transition: border-color .15s, box-shadow .15s;
  display: flex;
}

.quick-card:hover, .quick-card:active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.quick-card-icon {
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.quick-card-text {
  flex: 1;
  min-width: 0;
}

.quick-card-title {
  color: var(--foreground);
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 700;
}

.quick-card-sub {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.top-bar {
  height: var(--topbar-height);
  z-index: 200;
  background: #111;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 8px #00000040;
}

.top-bar-logo {
  background: var(--accent);
  color: #fff;
  letter-spacing: -.02em;
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-size: 18px;
  font-weight: 900;
  display: flex;
}

.top-bar-wordmark {
  color: #fff;
  letter-spacing: -.02em;
  font-size: 22px;
  font-weight: 800;
}

.top-bar-flow {
  color: var(--accent);
}

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