/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --font-brand: "Exo", sans-serif;
  --color-brand-primary: #8b254f;
  --color-brand-primary-hover: #721e41;
  --color-brand-primary-soft: #f5eef2;
  --color-brand-secondary: #435363;
  --color-brand-secondary-hover: #34404d;
  --color-brand-accent: #f19f53;
  --color-brand-accent-hover: #d8893f;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-muted: #f3f6fa;
  --color-surface-soft: #fbfcfe;
  --color-border: #e6ebf2;
  --color-border-strong: #d6dde8;
  --color-text: #263247;
  --color-text-strong: #182335;
  --color-text-muted: #64748b;
  --color-text-soft: #94a3b8;
  --radius-control: 8px;
  --radius-panel: 8px;
  --shadow-control: 0 8px 18px rgba(139, 37, 79, 0.18);
  --shadow-panel: 0 4px 10px rgba(15, 23, 42, 0.04);
  --status-success-bg: #ecfdf3;
  --status-success-text: #027a48;
  --status-success-border: #abefc6;
  --status-warning-bg: #fff7ed;
  --status-warning-text: #b45309;
  --status-warning-border: #fed7aa;
  --status-danger-bg: #fef3f2;
  --status-danger-text: #b42318;
  --status-danger-border: #fecdca;
  --status-info-bg: #f0f6f8;
  --status-info-text: var(--color-brand-secondary);
  --status-info-border: #d3dde4;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: var(--font-brand);
}
html {
  -webkit-text-size-adjust: 100%;
}
app-root {
  display: block;
  height: 100%;
  width: 100%;
}
app-dashboard-page,
app-academic-history-page,
app-continuing-education-page,
app-graduate-kardex-page,
app-payments-page,
app-procedures-page,
app-schedule-page,
app-settings-page,
app-pre-inscripcion-page,
app-preinscripcion-pago-page {
  display: block;
  width: 100%;
}
body {
  font-family: var(--font-brand);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-bg);
  color: var(--color-text);
}
body,
button,
input,
select,
textarea {
  font-family: var(--font-brand);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-brand);
  font-weight: 800;
  letter-spacing: 0;
  color: var(--color-text-strong);
}
h1,
h2 {
  font-weight: 800;
}
h3,
h4 {
  font-weight: 700;
}
h5,
h6 {
  font-weight: 600;
}
img,
svg,
video,
canvas {
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
input,
select,
textarea {
  color: var(--color-text);
}
input:focus,
select:focus,
textarea:focus {
  outline-color: var(--color-brand-primary);
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
button,
td,
th {
  overflow-wrap: anywhere;
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined" !important;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
@media print {
  app-sidebar,
  app-header,
  .sidebar,
  .header {
    display: none !important;
  }
  .layout,
  .layout__body {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    width: 100% !important;
  }
  .layout__content {
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    display: block !important;
  }
}

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