/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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 ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* You can add global styles to this file, and also import other style files */
/* Global Font Settings - Clean, Legible Sans-Serif (Inter) */
* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #1f2937;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1f2937;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p,
span,
div,
a,
button,
input,
textarea,
select,
label {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
}

/* Ensure minimum font sizes for accessibility (14px = 14pt) */
p,
span,
div,
a,
label {
  font-size: 14px;
  line-height: 1.6;
  color: #1f2937;
}

button {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

input,
textarea,
select {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
}

label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/* Small text - still readable */
small,
.small {
  font-size: 13px;
  line-height: 1.5;
}

/* Table text */
table {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

table th {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

table td {
  font-size: 14px;
  line-height: 1.6;
}

/* Global Theme Variables */
:root {
  --primary-color: #2c52f0;
  --primary-dark: #1e3a8a;
  --primary-gradient: linear-gradient(135deg, #2c52f0 0%, #1e3a8a 100%);
  --secondary-color: #6b7280;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #3b82f6;
  --text-main: #1f2937;
  --text-secondary: #6b7280;
  --bg-light: #f9fafb;
}

/* Global Dynamic Scrollbar Styling */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(44, 82, 240, 0.3) transparent;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(44, 82, 240, 0.3);
  border-radius: 3px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(44, 82, 240, 0.5);
}

/* Global Button Styles */
.btn-primary {
  background: var(--primary-gradient) !important;
  color: white !important;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(44, 82, 240, 0.1), 0 2px 4px -1px rgba(44, 82, 240, 0.06);
}
.btn-primary span {
  color: white !important;
}
.btn-primary:hover {
  box-shadow: 0 10px 15px -3px rgba(44, 82, 240, 0.2), 0 4px 6px -2px rgba(44, 82, 240, 0.1);
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  button,
  a,
  input,
  select,
  textarea {
    min-height: 44px;
  }
  body {
    overflow-x: hidden;
    width: 100%;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1.125rem;
  }
}

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