/* src/styles.css */
/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root,
  :host {
    --font-sans:
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji";
    --font-mono:
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type=button], [type=reset], [type=submit]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden=until-found])) {
    display: none !important;
  }
}
@layer utilities {
  .start {
    inset-inline-start: var(--spacing);
  }
  .container {
    width: 100%;
  }
  @media (width >= 40rem) {
    .container {
      max-width: 40rem;
    }
  }
  @media (width >= 48rem) {
    .container {
      max-width: 48rem;
    }
  }
  @media (width >= 64rem) {
    .container {
      max-width: 64rem;
    }
  }
  @media (width >= 80rem) {
    .container {
      max-width: 80rem;
    }
  }
  @media (width >= 96rem) {
    .container {
      max-width: 96rem;
    }
  }
  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .table {
    display: table;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "DM Sans",
    "Segoe UI",
    system-ui,
    sans-serif;
  background: #09090b;
  color: #f4f4f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background:
    linear-gradient(
      135deg,
      #648232,
      #4a6125);
  color: #09090b;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(101, 133, 57, 0.25);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(101, 133, 57, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: transparent;
  color: #a1a1aa;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid #3f3f46;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: #648232;
  color: #f4f4f5;
  background: rgba(101, 133, 57, 0.05);
}
.panel-encabezado {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.panel-titulo {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f4f4f5;
}
.panel-sub {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: #71717a;
}
.panel-card {
  background: #101013;
  border: 1px solid #27272a;
  border-radius: 0.75rem;
  overflow: hidden;
}
.panel-card + .panel-card {
  margin-top: 1.5rem;
}
.panel-card-titulo {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #27272a;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a1a1aa;
}
.panel-card-cuerpo {
  padding: 1.25rem;
}
.tabla {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.tabla th {
  text-align: left;
  padding: 0.75rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #71717a;
  border-bottom: 1px solid #27272a;
  white-space: nowrap;
}
.tabla td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #1c1c1f;
  color: #d4d4d8;
  vertical-align: middle;
}
.tabla tr:last-child td {
  border-bottom: none;
}
.tabla tbody tr:hover td {
  background: rgba(101, 133, 57, 0.04);
}
.tabla .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.tabla-scroll {
  overflow-x: auto;
}
.vacio {
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: #52525b;
  font-size: 0.875rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.campo {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.campo.ancho {
  grid-column: 1 / -1;
}
.campo label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #a1a1aa;
}
.campo input,
.campo select,
.campo textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #3f3f46;
  background: #09090b;
  color: #f4f4f5;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
}
.campo input:focus,
.campo select:focus,
.campo textarea:focus {
  outline: none;
  border-color: #648232;
}
.campo textarea {
  resize: vertical;
  min-height: 76px;
}
.campo .ayuda {
  font-size: 0.7rem;
  color: #52525b;
}
.form-acciones {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  white-space: nowrap;
}
.badge-propuesta,
.badge-borrador {
  background: rgba(113, 113, 122, 0.12);
  color: #a1a1aa;
  border-color: #3f3f46;
}
.badge-enviada {
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  border-color: #1e3a8a;
}
.badge-en_desarrollo {
  background: rgba(101, 133, 57, 0.14);
  color: #a3c26a;
  border-color: #4a6125;
}
.badge-aprobada,
.badge-entregado {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border-color: #166534;
}
.badge-pausado {
  background: rgba(234, 179, 8, 0.12);
  color: #fde047;
  border-color: #854d0e;
}
.badge-rechazada,
.badge-cancelado {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border-color: #991b1b;
}
.acciones {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
}
.btn-mini {
  padding: 0.35rem 0.7rem;
  border-radius: 0.4rem;
  border: 1px solid #3f3f46;
  background: transparent;
  color: #a1a1aa;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-mini:hover {
  border-color: #648232;
  color: #f4f4f5;
}
.btn-mini.peligro:hover {
  border-color: #991b1b;
  color: #fca5a5;
}
.btn-mini:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.progreso {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 110px;
}
.progreso-riel {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: #27272a;
  overflow: hidden;
}
.progreso-barra {
  height: 100%;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #4a6125,
      #648232);
}
.progreso span {
  font-size: 0.75rem;
  color: #71717a;
  font-variant-numeric: tabular-nums;
}
.aviso {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  border: 1px solid;
}
.aviso-ok {
  background: rgba(101, 133, 57, 0.1);
  border-color: #4a6125;
  color: #a3c26a;
}
.aviso-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: #991b1b;
  color: #fca5a5;
}
.totales {
  margin-left: auto;
  width: 100%;
  max-width: 320px;
  font-size: 0.875rem;
}
.totales div {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  color: #a1a1aa;
}
.totales div span:last-child {
  font-variant-numeric: tabular-nums;
  color: #d4d4d8;
}
.totales .total-final {
  border-top: 1px solid #27272a;
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.totales .total-final span:last-child {
  color: #a3c26a;
}
@keyframes vt-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}
@keyframes vt-fade-out {
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}
::view-transition-old(root) {
  animation: 220ms ease-out vt-fade-out;
}
::view-transition-new(root) {
  animation: 300ms ease-in vt-fade-in;
}
.enlace {
  color: inherit;
  text-decoration: none;
}
.enlace:hover strong {
  color: #a3c26a;
}
.tabla .sub {
  font-size: 0.75rem;
  color: #71717a;
  margin-top: 0.15rem;
}

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