/* src/styles.scss */
:root {
  --app-font-sans:
    "Nunito Sans",
    "Segoe UI",
    Arial,
    sans-serif;
  --app-font-serif:
    Georgia,
    "Times New Roman",
    serif;
  --app-border: rgba(148, 163, 184, 0.18);
  --app-border-strong: rgba(148, 163, 184, 0.26);
  --app-surface: rgba(255, 255, 255, 0.96);
  --app-surface-soft: #f8fafc;
  --app-page-bg: #f1f5f9;
  --app-primary: #2563eb;
  --app-primary-strong: #0ea5e9;
  --app-danger: #dc2626;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}
app-root {
  display: block;
  width: 100%;
  height: 100%;
}
body {
  overflow: auto;
  font-family: var(--app-font-sans);
  background: var(--app-page-bg);
}
* {
  box-sizing: border-box;
}
.table-sm th,
.table-sm td {
  padding: 0.4rem;
}
.app-title-serif {
  font-family: var(--app-font-serif);
}
.app-card {
  border-radius: 1.4rem;
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}
.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  border-radius: 0.95rem;
  padding: 0.88rem 1.15rem;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease,
    color 150ms ease,
    border-color 150ms ease;
}
.app-button:hover {
  transform: translateY(-1px);
}
.app-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}
.app-button--primary {
  color: #fff;
  background:
    linear-gradient(
      90deg,
      #0fb7df,
      #1d4ed8);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.22);
}
.app-button--primary:hover {
  box-shadow: 0 20px 34px rgba(37, 99, 235, 0.28);
}
.app-button--secondary {
  color: #334155;
  background: #fff;
  border: 1px solid var(--app-border-strong);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}
.app-button--danger {
  color: #fff;
  background:
    linear-gradient(
      90deg,
      #ef4444,
      #dc2626);
  box-shadow: 0 18px 30px rgba(220, 38, 38, 0.2);
}
.app-button--ghost {
  color: #475569;
  background: transparent;
  border: 1px solid transparent;
}
.app-button--icon {
  width: 2.3rem;
  height: 2.3rem;
  padding: 0;
  border-radius: 0.8rem;
  background: #fff;
  border: 1px solid var(--app-border);
  color: #334155;
}
.app-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.app-modal {
  width: min(100%, 42.5rem);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}
.app-modal--compact {
  width: min(100%, 26rem);
}
.app-form-field {
  display: grid;
  gap: 0.45rem;
}
.app-form-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
}
.app-form-input,
.app-form-select {
  width: 100%;
  min-height: 3rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: #fff;
  padding: 0.72rem 0.95rem;
  font-size: 0.95rem;
  color: #0f172a;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.app-form-input::placeholder {
  color: #94a3b8;
}
.app-form-input:focus,
.app-form-select:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.app-form-input--textarea {
  min-height: 6.5rem;
  resize: vertical;
}
.app-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
}
.app-pill--success {
  color: #0f9d58;
  background: #d1fae5;
  border: 1px solid rgba(74, 222, 128, 0.35);
}
.app-pill--muted {
  color: #64748b;
  background: #eef2f7;
  border: 1px solid rgba(148, 163, 184, 0.2);
}
app-schedule-upload,
app-view-schedule,
app-schedule-dashboard {
  color: #0f172a;
  font-family: var(--app-font-sans) !important;
}
app-schedule-upload .schedule-page,
app-view-schedule .monitoring-page,
app-schedule-dashboard .dashboard {
  color: #0f172a !important;
  font-family: var(--app-font-sans) !important;
}
app-schedule-upload .panel,
app-view-schedule .panel,
app-schedule-dashboard .panel {
  border-color: var(--app-border) !important;
  background: var(--app-surface) !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05) !important;
}
app-schedule-upload h1,
app-schedule-upload h2,
app-schedule-upload h3,
app-view-schedule h1,
app-view-schedule h2,
app-view-schedule h3,
app-schedule-dashboard h1,
app-schedule-dashboard h2,
app-schedule-dashboard h3 {
  color: #0f172a !important;
  font-family: var(--app-font-sans) !important;
}
app-schedule-upload h1,
app-view-schedule h1,
app-schedule-dashboard h1 {
  font-size: 1.05rem !important;
}
app-schedule-upload h2,
app-view-schedule h2,
app-schedule-dashboard h2 {
  font-size: 0.92rem !important;
}
app-schedule-upload label,
app-view-schedule label,
app-schedule-dashboard label {
  color: #334155 !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
}
app-schedule-upload input,
app-schedule-upload select,
app-view-schedule input,
app-view-schedule select,
app-schedule-dashboard input,
app-schedule-dashboard select {
  color: #0f172a !important;
  border-color: rgba(148, 163, 184, 0.32) !important;
  font-family: var(--app-font-sans) !important;
  font-size: 0.85rem !important;
}
app-schedule-upload input:focus,
app-schedule-upload select:focus,
app-view-schedule input:focus,
app-view-schedule select:focus,
app-schedule-dashboard input:focus,
app-schedule-dashboard select:focus {
  border-color: rgba(37, 99, 235, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}
app-schedule-upload .submit,
app-view-schedule .search,
app-schedule-dashboard .primary,
app-schedule-dashboard .view-toggle .active {
  background:
    linear-gradient(
      90deg,
      #0fb7df,
      #1d4ed8) !important;
}
app-schedule-upload .cancel,
app-view-schedule .reset,
app-schedule-dashboard .actions button:not(.primary),
app-view-schedule .view-actions button:not(.active),
app-schedule-dashboard .view-toggle button:not(.active) {
  color: #334155 !important;
  border-color: var(--app-border-strong) !important;
  background: #fff !important;
}
app-view-schedule .kpis article,
app-schedule-dashboard .kpis article {
  border-color: var(--app-border) !important;
  background: var(--app-surface-soft) !important;
}
app-view-schedule .kpis span,
app-view-schedule .kpis small,
app-schedule-dashboard .kpis p,
app-schedule-dashboard .kpis small,
app-schedule-upload dt {
  color: #64748b !important;
}
app-view-schedule .kpis strong,
app-schedule-dashboard .kpis strong {
  color: #0f172a !important;
  font-size: 1.05rem !important;
}
app-schedule-upload .table-wrap table,
app-view-schedule .table-wrap table,
app-schedule-dashboard .table-wrap table {
  color: #334155 !important;
  font-family: var(--app-font-sans) !important;
  font-size: 0.75rem !important;
}
app-schedule-upload .table-wrap th,
app-view-schedule .table-wrap th,
app-schedule-dashboard .table-wrap th {
  color: #334155 !important;
  background: #f8fafc !important;
  font-size: 0.8rem !important;
}
app-schedule-upload .app-button,
app-view-schedule .app-button,
app-schedule-dashboard .app-button {
  min-height: 2.35rem !important;
  border-radius: 0.55rem !important;
  font-family: var(--app-font-sans) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
}
app-schedule-upload .view-schedule,
app-schedule-dashboard .view-schedule,
app-view-schedule .view-actions .app-button,
app-schedule-dashboard .view-toggle .app-button {
  min-height: 2rem !important;
  padding: 0.4rem 0.7rem !important;
  font-size: 0.76rem !important;
}

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