/*!*****************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./src/global_styles.css?ngGlobalStyle ***!
  \*****************************************************************************************************************************************************************************************************************************/
/* Color system */
:root {
  /* Primary colors */
  --primary-color: #4915b2;
  --primary-dark: #370d8c;
  --primary-light: #6837d7;
  --on-primary-color: #ffffff;
  
  /* Secondary colors */
  --secondary-color: #4feaf8;
  --secondary-dark: #00b8c6;
  --secondary-light: #b2f8ff;
  --on-secondary-color: #003437;
  
  /* Neutral colors */
  --background-color: #ffffff;
  --surface-color: #f8f9fa;
  --error-color: #b00020;
  --on-error-color: #ffffff;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  
  /* Text colors */
  --text-primary: rgba(0, 0, 0, 0.87);
  --text-secondary: rgba(0, 0, 0, 0.6);
  --text-disabled: rgba(0, 0, 0, 0.38);
  
  /* Outline & dividers */
  --divider-color: rgba(0, 0, 0, 0.12);
  --outline-color: rgba(0, 0, 0, 0.12);

  /* Spacing system (8px increments) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
}

/* Base styles */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--text-primary);
  background-color: var(--background-color);
  line-height: 1.5;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  margin-top: 0;
  margin-bottom: var(--space-2);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
}

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Material theme customization */
.mat-mdc-raised-button.mat-primary {
  background-color: var(--primary-color) !important;
}

.mat-toolbar.mat-primary {
  background-color: var(--primary-color);
  color: var(--on-primary-color);
}

/* Accessibility improvements */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
  
  .hide-on-mobile {
    display: none;
  }
}

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