/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* Global styles - Waslx CRM (colors match waslx-android theme) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Firefox Support */
* {
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: #007bff #e0e0e0; /* thumb and track color */
}

/* Chrome, Edge, and Safari Support */
::-webkit-scrollbar {
  width: 12px; /* width of the vertical scrollbar */
  height: 12px; /* height of the horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #e0e0e0; /* color of the tracking area */
  border-radius: 8px; /* roundness of the track */
}

::-webkit-scrollbar-thumb {
  background-color: #007bff; /* the blue scroll thumb */
  border-radius: 8px; /* roundness of the thumb */
  border: 3px solid #e0e0e0; /* creates padding around the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #0056b3; /* darker blue when hovering */
}

:root {
  /* Primary / accent – medium blue (was violet-blue #5B72FF) */
  --waslx-primary: #2563EB;
  --waslx-primary-dark: #1D4ED8;
  /* Background & surfaces (WaslxLoginBg, WaslxDashboardBg) */
  --waslx-bg: #F5F7FA;
  --waslx-card: #FFFFFF;
  /* Text (WaslxDashboardTextPrimary, WaslxLoginTextPrimary / Secondary) */
  --waslx-text: #1A1A1A;
  --waslx-text-secondary: #6F7E8D;
  --waslx-text-muted: #8E8E93;
  --waslx-placeholder: #A0A0A0;
  /* Borders & inputs (WaslxLoginBorder) */
  --waslx-border: #E0E0E0;
  /* Links */
  --waslx-link: #2563EB;
  /* Error */
  --waslx-error: #B00020;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  background-color: var(--waslx-bg);
  color: var(--waslx-text);
}

/* All inputs have visible border by default */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--waslx-primary) !important;
  outline: none;
}

/* Default avatar: dummy vector user image (theme primary color) */
.avatar {
  background-color: var(--waslx-primary);
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

/* Standard inline error banner (use across app for API or validation errors) */
.app-error-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #b91c1c;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.app-error-banner::before {
  content: "!";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

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