/* src/styles.css */
:root {
  --bg: #0b1220;
  --text: #e8eefc;
  --muted: #a7b4d6;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-solid: #1a2336;
  --primary: #8fb3ff;
  --primary-2: #6f9dfc;
  --ring: rgba(143, 179, 255, 0.33);
  --danger: #ffb3b3;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --field-h: 48px;
  --transition: 160ms ease;
}
[data-theme=light] {
  --bg: #f5f6f8;
  --text: #1a1d24;
  --muted: #5c6370;
  --surface: #ffffff;
  --surface-strong: rgba(0, 0, 0, 0.04);
  --surface-solid: #ffffff;
  --primary: #2563eb;
  --primary-2: #1d4ed8;
  --ring: rgba(37, 99, 235, 0.25);
  --danger: #dc2626;
  --border: rgba(0, 0, 0, 0.1);
  --border-strong: rgba(0, 0, 0, 0.15);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
}
* {
  box-sizing: border-box;
}
button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none !important;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.btn.primary,
button.btn.primary {
  border: none !important;
  box-shadow: none !important;
  background-image: none !important;
}
.btn.secondary,
button.btn.secondary {
  box-shadow: none !important;
  background-image: none !important;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--primary-2);
}
select,
select option {
  background-color: var(--surface-solid);
  color: var(--text);
}
:root select {
  color-scheme: dark;
}
[data-theme=light] select {
  color-scheme: light;
}
.customers-list .form-error {
  color: #f7b7b2;
  margin-bottom: 0.75rem;
}
.customers-list .overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.customers-list .overlay-backdrop.open {
  opacity: 1;
}
.customers-list .overlay-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 360px;
  max-width: 90vw;
  background:
    radial-gradient(
      circle at top left,
      rgba(30, 99, 83, 0.18),
      transparent 32%),
    linear-gradient(
      180deg,
      #081019 0%,
      #0b1420 100%);
  color: #edf2fb;
  border-right: 1px solid rgba(140, 170, 190, 0.14);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
  z-index: 101;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  font-family:
    "Segoe UI Variable",
    "Segoe UI",
    "IBM Plex Sans",
    "Trebuchet MS",
    sans-serif;
}
.customers-list .overlay-panel.open {
  transform: translateX(0);
}
.customers-list .overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(140, 170, 190, 0.12);
}
.customers-list .overlay-header h2 {
  margin: 0;
  font-size: 1.05rem;
}
.customers-list .btn.icon-close {
  min-width: 2rem;
  min-height: 2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #a5b2c5;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.customers-list .btn.icon-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #edf2fb;
}
.customers-list .overlay-form {
  padding: 1rem;
  flex: 1;
}
.customers-list .overlay-form .form-field {
  margin-bottom: 1rem;
}
.customers-list .overlay-form .form-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: #a5b2c5;
  font-size: 0.88rem;
}
.customers-list .overlay-actions {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 1rem;
}
.customers-list .overlay-actions .btn {
  flex: 1;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
