@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;700&display=swap";

/* src/styles.css */
:root {
  --brand-primary: #232D4B;
  --brand-primary-light: #3a4a6b;
  --brand-primary-hover: #1a2238;
  --brand-primary-rgb:
    35,
    45,
    75;
  --brand-accent: #F5F340;
  --brand-cta: #E20074;
  --brand-cta-hover: #c40063;
  --surface-page: #f8f9fa;
  --surface-card: #ffffff;
  --surface-sidebar: #232D4B;
  --surface-sidebar-hover: #2e3a5c;
  --surface-sidebar-border: rgba(245, 243, 64, 0.2);
  --surface-muted: #f1f5f9;
  --surface-border: rgba(35, 45, 75, 0.15);
  --text-primary: #232D4B;
  --text-secondary: #64748b;
  --text-sidebar: #f8f9fa;
  --text-sidebar-muted: #c0c8d8;
  --text-on-primary: #ffffff;
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-danger: #E20074;
  --color-info: #3b82f6;
  --font-family:
    "Poppins",
    system-ui,
    -apple-system,
    sans-serif;
  --font-size-base: 14px;
  --font-weight-normal: 300;
  --font-weight-medium: 300;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-base: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --sidebar-width: 240px;
  --sidebar-collapsed-width: 64px;
  --header-height: 56px;
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
}
html {
  font-size: var(--font-size-base);
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family) !important;
  background-color: var(--surface-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
  margin: 0 0 var(--space-4);
}
h2 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
  margin: 0 0 var(--space-3);
}
h3 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
  margin: 0 0 var(--space-2);
}
h4 {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
  margin: 0 0 var(--space-2);
}
*:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}
.p-button:not(.p-button-secondary):not(.p-button-danger):not(.p-button-success):not(.p-button-warn):not(.p-button-info):not(.p-button-text):not(.p-button-outlined):not(.p-button-link) {
  background: var(--brand-cta);
  border-color: var(--brand-cta);
  color: var(--text-on-primary);
}
.p-button:not(.p-button-secondary):not(.p-button-danger):not(.p-button-success):not(.p-button-warn):not(.p-button-info):not(.p-button-text):not(.p-button-outlined):not(.p-button-link):hover {
  background: var(--brand-cta-hover);
  border-color: var(--brand-cta-hover);
}
.p-button:not(.p-button-secondary):not(.p-button-danger):not(.p-button-success):not(.p-button-warn):not(.p-button-info):not(.p-button-text):not(.p-button-outlined):not(.p-button-link):focus-visible {
  box-shadow: 0 0 0 2px var(--surface-card), 0 0 0 4px var(--brand-cta);
}
.p-button-secondary {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--text-on-primary);
}
.p-button-secondary:hover {
  background: var(--brand-primary-hover);
  border-color: var(--brand-primary-hover);
}
.p-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  box-shadow: none;
}
.p-datatable .p-datatable-thead > tr > th {
  background: var(--surface-muted);
  border-bottom: 1px solid var(--surface-border);
  font-weight: var(--font-weight-semibold);
  font-size: 0.85rem;
}
.p-datatable .p-datatable-tbody > tr:hover {
  background: rgba(35, 45, 75, 0.04);
}
.p-datatable .p-datatable-tbody > tr > td {
  border-bottom: 1px solid var(--surface-border);
  font-size: 0.85rem;
}
.p-inputtext,
.p-select,
.p-multiselect,
.p-inputnumber-input {
  border: 1px solid var(--surface-border) !important;
  border-radius: var(--radius-base) !important;
  font-family: var(--font-family) !important;
  font-weight: var(--font-weight-normal) !important;
  font-size: 0.875rem;
  padding: 0.625rem 0.75rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.p-inputtext:focus,
.p-inputtext:focus-within,
.p-inputtext.p-focus,
.p-select:focus,
.p-select.p-focus,
.p-select:focus-within,
.p-multiselect:focus,
.p-multiselect.p-focus,
.p-inputnumber-input:focus {
  box-shadow: 0 0 0 2px rgba(245, 243, 64, 0.5) !important;
  border-color: var(--brand-accent) !important;
  outline: none !important;
}
.p-inputtext.ng-invalid.ng-touched,
.p-inputtext.p-invalid,
.p-select.ng-invalid.ng-touched {
  border-color: var(--brand-cta) !important;
  box-shadow: 0 0 0 2px rgba(226, 0, 116, 0.15) !important;
}
.p-button-success {
  background: var(--brand-cta) !important;
  border-color: var(--brand-cta) !important;
  color: var(--text-on-primary) !important;
}
.p-button-success:hover {
  background: var(--brand-cta-hover) !important;
  border-color: var(--brand-cta-hover) !important;
}
.p-tag.p-tag-success {
  background: #dcfce7;
  color: #166534;
}
.p-tag.p-tag-warn {
  background: #fef3c7;
  color: #92400e;
}
.p-tag.p-tag-danger {
  background: #fce4ec;
  color: #880e4f;
}
.p-tag.p-tag-info {
  background: #dbeafe;
  color: #1e40af;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
@keyframes unsaved-pulse {
  0%, 100% {
    background-color: #E20074;
    color: #ffffff;
    border-color: #E20074;
  }
  50% {
    background-color: #ffffff;
    color: #E20074;
    border-color: #E20074;
  }
}
.btn-unsaved {
  animation: unsaved-pulse 2s ease-in-out infinite !important;
  border: 2px solid #E20074 !important;
}
label.required::after {
  content: " *";
  color: var(--color-danger, #E20074);
  font-weight: var(--font-weight-semibold, 600);
}
.home {
  padding: var(--space-6);
}

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