@charset "UTF-8";
/* Hide all inline controls */
.form-row label::first-letter {
  text-transform: uppercase; }

a.button {
  margin: 1rem 0;
  display: inline-block;
  padding: 0.5rem; }

/* Reporte wizard filter */
.wizard-actions {
  margin-top: 1rem; }

/* End reporte wizard field */
/* Articulo Campo inline ajustes */
/* Reporte wizard scope */
p:has(#id_expand_rows) {
  display: none; }

/* End reporte wizard scope */
body {
  background-color: #0a0c0d; }

body.login #nav-sidebar,
body.login #changelist-filter,
body.login aside {
  display: none !important; }

#content > h2 {
  max-width: 1000px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

/* Excepción a la regla */
.model-sindicato #content > h2 {
  max-width: 100%; }

.module h2 {
  background-color: #495867;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 1rem;
  font-size: 1.2rem; }

.hidden {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, max-height 0.25s ease, transform 0.25s ease; }

.visible {
  opacity: 1;
  max-height: 60px;
  transform: translateY(0); }

.disabled {
  cursor: not-allowed;
  pointer-events: none; }
  .disabledbutton {
    opacity: 0.5; }
  .disabledinput {
    opacity: 0.5; }
  .disableda {
    opacity: 0.5; }

#overlay-procesando {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9999;
  align-items: center;
  justify-content: center; }

#overlay-procesando.visible {
  display: flex; }

.mensaje-procesando {
  background: white;
  padding: 20px 40px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold; }

.mensaje-error {
  color: #F7F7FF; }

.popup .tabs {
  display: none; }

a {
  color: #BDD5EA;
  text-decoration: none;
  transition: color 0.15s ease-in-out; }
  a:hover {
    color: #dce9f4;
    text-decoration: none !important; }
  a:active {
    color: #8fb7db; }
  a:visited {
    color: #c6d4e1; }
  a:disabled {
    color: rgba(247, 247, 255, 0.4); }
  a:focus {
    text-decoration: none; }
  a.login-link {
    display: inline-block;
    background-color: #343f49;
    padding: 0.5rem;
    margin: 0 0.3rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    height: 2.2rem;
    box-sizing: border-box;
    border: 0; }
    a.login-link:hover {
      background-color: #FE5F55; }
    a.login-link:visited {
      text-decoration: none; }

#container {
  /* Header pegado arriba */
  /* Nav pegado debajo del header */ }
  #container #header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    padding: 10px 1.5rem;
    background-color: #495867;
    border-bottom: 1px solid rgba(189, 213, 234, 0.25); }
    #container #header > div:first-child {
      flex: 1;
      /* crece y ocupa el espacio restante */ }
    #container #header > div:last-child {
      flex: 0 0 auto;
      /* no crece, no se encoge, ancho según contenido */ }
  #container > header {
    position: sticky;
    top: 0;
    z-index: 2000; }
  #container > nav {
    position: sticky;
    top: 56.3px;
    /* exactamente la altura del header */
    z-index: 1999;
    /*border-bottom: 1px solid rgba(255,255,255,0.05);*/
    background: #343f49;
    backdrop-filter: blur(6px); }

input.btn, input.button, button.btn, button.button, a.btn, a.button, input[type="submit"].btn, input[type="submit"].button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.3em 1em;
  margin: 0 0.5em;
  border-radius: 0.4em;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out, transform 0.05s ease; }
  input.btn:active, input.button:active, button.btn:active, button.button:active, a.btn:active, a.button:active, input[type="submit"].btn:active, input[type="submit"].button:active {
    transform: scale(0.98); }
  input.btn:disabled, input.button:disabled, button.btn:disabled, button.button:disabled, a.btn:disabled, a.button:disabled, input[type="submit"].btn:disabled, input[type="submit"].button:disabled {
    opacity: 0.6;
    cursor: not-allowed; }
  input.btn.procesando, input.button.procesando, button.btn.procesando, button.button.procesando, a.btn.procesando, a.button.procesando, input[type="submit"].btn.procesando, input[type="submit"].button.procesando {
    background-color: #ff3841; }

input.btn-primary, input.default, button.btn-primary, button.default, a.btn-primary, a.default, input[type="submit"].btn-primary, input[type="submit"].default {
  background-color: #BDD5EA;
  color: #0a0c0d; }
  input.btn-primary:hover, input.default:hover, button.btn-primary:hover, button.default:hover, a.btn-primary:hover, a.default:hover, input[type="submit"].btn-primary:hover, input[type="submit"].default:hover {
    background-color: #ffe76d;
    color: #0a0c0d; }

input.btn-secondary, input .btn-cancel, button.btn-secondary, button .btn-cancel, a.btn-secondary, a .btn-cancel, input[type="submit"].btn-secondary, input[type="submit"] .btn-cancel {
  background-color: #738db0;
  color: #F7F7FF; }

input.btn-delete, button.btn-delete, a.btn-delete, input[type="submit"].btn-delete {
  background-color: #ff3841;
  color: #F7F7FF; }

input.btn-nav, button.btn-nav, a.btn-nav, input[type="submit"].btn-nav {
  background-color: transparent;
  color: #BDD5EA;
  transition: all 0.2s ease;
  border: 0; }
  input.btn-nav:hover, button.btn-nav:hover, a.btn-nav:hover, input[type="submit"].btn-nav:hover {
    color: #F7F7FF; }

input.btn-add, button.btn-add, a.btn-add, input[type="submit"].btn-add {
  background-color: #38a3a4;
  color: #0a0c0d; }

input.btn-edit, button.btn-edit, a.btn-edit, input[type="submit"].btn-edit {
  background-color: #577399;
  color: #F7F7FF; }

input.btn-export, button.btn-export, a.btn-export, input[type="submit"].btn-export {
  background-color: #96bcde;
  color: #495867; }

input.btn-expand, button.btn-expand, a.btn-expand, input[type="submit"].btn-expand {
  background-color: transparent;
  color: #F7F7FF; }

input.btn-outline, button.btn-outline, a.btn-outline, input[type="submit"].btn-outline {
  background: transparent;
  border: 1px solid #BDD5EA;
  color: #BDD5EA; }
  input.btn-outline:hover, button.btn-outline:hover, a.btn-outline:hover, input[type="submit"].btn-outline:hover {
    border-color: #d0e1f0;
    color: #F7F7FF; }

input.btn-link-style, button.btn-link-style, a.btn-link-style, input[type="submit"].btn-link-style {
  background: transparent;
  border: none;
  color: #BDD5EA;
  padding: 0; }
  input.btn-link-style:hover, button.btn-link-style:hover, a.btn-link-style:hover, input[type="submit"].btn-link-style:hover {
    padding: 0.3em;
    color: #F7F7FF;
    border: 1px solid #d0e1f0; }

input.btn-small, button.btn-small, a.btn-small, input[type="submit"].btn-small {
  font-size: 0.7rem; }

input.btn-nice, button.btn-nice, a.btn-nice, input[type="submit"].btn-nice {
  cursor: pointer;
  border: none;
  background: #f3f3f3;
  border-radius: 6px;
  padding: 4px 8px;
  transition: background 0.2s ease, transform 0.15s ease; }
  input.btn-nice:hover, button.btn-nice:hover, a.btn-nice:hover, input[type="submit"].btn-nice:hover {
    background: #e8e8e8;
    transform: scale(1.05); }

#branding {
  vertical-align: middle;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; }
  #branding .branding-logo {
    height: 30px;
    vertical-align: middle; }
  #branding .branding-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #F7F7FF;
    vertical-align: middle; }
  #branding #sindicato-logo {
    overflow: visible; }
  #branding #site-name {
    display: flex;
    flex-direction: row;
    align-content: center;
    gap: 0.5rem; }
    #branding #site-name a:visited {
      color: #BDD5EA; }
  #branding button {
    background-color: #343f49;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    border: 0;
    font-weight: bold;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    height: 2.2rem; }
    #branding button:hover {
      background-color: #495867;
      transform: translateY(-1px); }
  #branding .user-tool-link {
    display: inline-flex;
    background-color: #343f49;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    height: 2.2rem;
    box-sizing: border-box;
    border: 0;
    padding: 1px 4px;
    align-items: center;
    justify-content: center; }
    #branding .user-tool-link:hover {
      background-color: #495867;
      transform: translateY(-1px); }

#user-tools .user-tool-link {
  display: inline-block;
  background-color: #343f49;
  padding: 0.5rem;
  margin: 0 0.3rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  height: 2.2rem;
  box-sizing: border-box;
  border: 0; }

#user-tools button {
  background-color: #343f49;
  padding: 0.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  border: 0;
  font-weight: bold;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  height: 2.2rem; }

.notification-wrapper button {
  border-radius: 50%;
  background-color: #333;
  margin-left: 2rem; }

#notification-dropdown {
  position: absolute;
  right: 20px;
  width: 300px;
  background: white;
  border: 1px solid #ddd;
  max-height: 400px;
  overflow-y: auto;
  background-color: #111;
  padding: 1rem;
  border-radius: 4px; }

.notification-wrapper {
  position: relative;
  display: inline-block; }

.bell-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  position: relative; }

.notification-badge {
  position: absolute;
  top: -6px;
  right: -20px;
  background-color: #d63638;
  /* Django admin red */
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: bold;
  min-width: 18px;
  text-align: center; }

.eventos .componente {
  padding: 0.5rem;
  margin: 1rem;
  color: #F7F7FF; }
  .eventos .componente h3 {
    margin-bottom: 1rem; }
  .eventos .componente li {
    margin-bottom: 1rem; }

div.breadcrumbs {
  background-color: #343f49;
  padding: 10px 1.5rem; }

.fieldset-captcha {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.otp-container .submit-row {
  text-align: left; }

.otp-container .otp-footer {
  margin-top: 1rem; }

.otp-error {
  color: #fe4237; }

.model-articulovalor h3 {
  margin: 0 0 1rem;
  padding: 0; }

.model-articulovalor fieldset:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem; }
  .model-articulovalor fieldset:first-child .form-row {
    grid-column: 1; }
    .model-articulovalor fieldset:first-child .form-row.field-texto {
      grid-row: 1 / span 7;
      grid-column: 2;
      border-bottom: 0; }
      .model-articulovalor fieldset:first-child .form-row.field-texto label {
        min-width: 50px;
        width: 50px; }

.model-articulovalor .periodo-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem; }
  .model-articulovalor .periodo-group .delete-inline input {
    display: none; }

.model-articulovalor .inline-related {
  padding: 1rem;
  border: 0 solid rgba(189, 213, 234, 0.25);
  border-radius: 4px;
  background-color: #14181c;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  box-sizing: border-box; }
  .model-articulovalor .inline-related h4 {
    margin-bottom: 0;
    padding-bottom: 0; }
  .model-articulovalor .inline-related .form-row {
    background-color: #14181c;
    border-bottom: 0; }
    .model-articulovalor .inline-related .form-row .visible label {
      cursor: pointer; }
      .model-articulovalor .inline-related .form-row .visible label:hover {
        padding: 0.3em;
        color: #F7F7FF;
        border: 1px solid #d0e1f0;
        border-radius: 4px; }
  .model-articulovalor .inline-related fieldset {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: inherit;
    box-sizing: border-box;
    flex-wrap: wrap; }
    .model-articulovalor .inline-related fieldset .tipo-dato-opciones label {
      justify-content: flex-start; }
      .model-articulovalor .inline-related fieldset .tipo-dato-opciones label input {
        margin-right: 1rem; }
    .model-articulovalor .inline-related fieldset .tipo-dato-opciones > div {
      padding-bottom: 1rem; }
    .model-articulovalor .inline-related fieldset.module {
      background-color: inherit; }
  .model-articulovalor .inline-related label {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 0 1rem 0 0;
    width: auto;
    min-width: unset; }
    .model-articulovalor .inline-related label::first-letter {
      text-transform: uppercase; }
    .model-articulovalor .inline-related label:empty {
      display: none; }
  .model-articulovalor .inline-related input {
    box-sizing: border-box;
    width: 150px; }
  .model-articulovalor .inline-related .checkbox-row label {
    justify-content: flex-start;
    padding-left: 1rem; }
  .model-articulovalor .inline-related .campo-etiqueta {
    min-width: 100px; }

.model-articulovalor .articulo {
  border: 1px solid rgba(189, 213, 234, 0.25);
  padding: 1rem; }

.model-articulovalor .articulo-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem 0 0 0; }

.model-articulovalor .periodo-group {
  margin: 0;
  padding: 0; }

.field-acta .related-widget-wrapper-link {
  display: none; }

th.field-articulo_numero {
  white-space: nowrap; }

.change-form #content-main .inline-related fieldset.module {
  background-color: inherit; }

.model-contextovalor h2, .model-medida h2 {
  width: 60%; }

.model-contextovalor h3, .model-medida h3 {
  padding-left: 0; }

.model-contextovalor h4, .model-medida h4 {
  padding-left: 0;
  margin: 0; }

.model-contextovalor .periodo-group, .model-medida .periodo-group {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .model-contextovalor .periodo-group label, .model-medida .periodo-group label {
    width: auto;
    min-width: unset; }
  .model-contextovalor .periodo-group .delete-inline input, .model-medida .periodo-group .delete-inline input {
    display: none; }

.model-contextovalor .inline-related .form-row, .model-medida .inline-related .form-row {
  border: 0; }

.model-contextovalor .contexto-actions, .model-medida .contexto-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start; }

.model-contextovalor fieldset.contexto, .model-medida fieldset.contexto {
  border: 1px solid rgba(189, 213, 234, 0.25);
  padding: 0 1rem;
  border-radius: 4px;
  background-color: #1f252b; }

.model-lineabase.change-form #add_id_contextos_valor {
  display: none; }

.model-lineabase.change-form .select2-container--admin-autocomplete {
  width: 624px !important; }

#toggle-nav-sidebar {
  background-color: #14181c; }

#nav-sidebar {
  background-color: #14181c; }
  #nav-sidebar #nav-filter {
    margin: 1rem 0; }

.module caption {
  background-color: #577399; }

.column-view_link {
  min-width: 4rem; }

table thead th .text a {
  display: block;
  cursor: pointer;
  padding: 0; }
  table thead th .text a:hover {
    color: inherit; }

table {
  background: #F7F7FF;
  color: #343f49; }
  table thead th {
    font-size: 1.1rem;
    padding: 1rem;
    background: #495867; }
    table thead th.sorted {
      background: #5e7285; }
  table tr:nth-child(2n), table .row-form-errors {
    background: #dedeff; }
  table tr:nth-child(2n+1), table .row-form-errors {
    background: #c4c4ff; }
  table tbody tr:hover {
    color: black; }
    table tbody tr:hover a {
      color: black; }
  table th {
    font-size: 1rem;
    padding: 1rem; }
  table td {
    font-size: 1rem;
    padding: 1rem; }
  table .field-razon_social {
    max-width: 500px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  table .column-links {
    min-width: 200px; }
  table a {
    color: #343f49; }
    table a:link {
      color: #343f49; }
    table a:hover {
      color: #455361; }
    table a:active {
      color: #1a2025; }
    table a:visited {
      color: #3f3f3f; }
    table a:disabled {
      color: rgba(52, 63, 73, 0.4); }

input:not([type]),
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="tel"],
select, .vTextField,
.select2-selection {
  background-color: #3e4b58; }

.related-widget-wrapper .select2-container--admin-autocomplete .select2-selection--single {
  background-color: #3e4b58; }

fieldset {
  background-color: unset; }

.checkbox-row label {
  text-align: left;
  padding-left: 1rem; }

.change_form_nav {
  margin-bottom: 1rem; }

.actions {
  padding: 0.5rem 0; }

.change_list_nav {
  margin-bottom: 1rem; }

#changelist {
  background-color: #14181c;
  padding: 2rem;
  border-radius: 4px; }
  #changelist #toolbar {
    background-color: #1f252b; }
  #changelist .actions {
    background-color: #1f252b;
    box-sizing: border-box; }
  #changelist .paginator {
    background-color: #1f252b;
    box-sizing: border-box; }
  #changelist #changelist-filter {
    background-color: #1f252b; }
  #changelist table thead th {
    padding: 1rem; }

.change-list h1 {
  font-weight: bold;
  font-size: 2rem;
  text-transform: uppercase; }

.change-form h1 {
  display: none; }

.change-form h2 {
  font-size: 1.2rem; }

.change-form #content-main fieldset.module {
  border-radius: 4px;
  background-color: #1f252b; }

.change-form #content-main fieldset .form-row {
  padding: 10px 1rem; }

.change-form #content-main .submit-row {
  border-radius: 4px;
  background-color: #1f252b; }

.periodo-group {
  position: relative; }
  .periodo-group .inline-related > .errorlist {
    display: block;
    position: absolute;
    top: -1rem;
    left: 0;
    width: 1000px;
    padding: 0 1rem; }
    .periodo-group .inline-related > .errorlist ul {
      margin: 0;
      padding: 0;
      list-style: none; }
    .periodo-group .inline-related > .errorlist li {
      display: flex;
      gap: 1rem;
      flex-direction: row;
      align-items: center;
      margin: 0;
      padding: 0; }

.componente.buscador input {
  font-size: 1.5rem;
  padding: 0.25em 0.5em;
  width: 50%; }

.componente.resultados-buscador {
  padding: 0; }
  .componente.resultados-buscador .resultado-item {
    padding: 1rem; }
    .componente.resultados-buscador .resultado-item:hover {
      background-color: #577399; }
  .componente.resultados-buscador span.tipo {
    font-weight: bold;
    text-transform: capitalize; }
  .componente.resultados-buscador .resultado-enlaces {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0.5rem 0; }
    .componente.resultados-buscador .resultado-enlaces a {
      display: inline-block;
      margin-right: 1rem; }

#resumen {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 1rem;
  padding: 2rem; }
  #resumen .campo {
    font-size: 1.2rem;
    display: flex;
    background-color: #BDD5EA;
    color: #0a0c0d;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 2em; }
    #resumen .campo.grafico {
      padding: 1rem; }
    #resumen .campo label {
      text-align: center; }
    #resumen .campo .valor {
      font-size: 2em;
      font-weight: bold;
      color: #577399; }
  #resumen .rowspan2 {
    font-size: 1.5rem;
    grid-column: span 2; }
  #resumen .rowspan4 {
    font-size: 1.5rem;
    grid-column: span 4; }

.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #495867;
  margin: 15px 0 10px 0; }
  .tabs .tab {
    padding: 8px 14px;
    text-decoration: none;
    background: #495867;
    border: 1px solid #495867;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    color: #F7F7FF;
    font-weight: 500; }
  .tabs .tab:hover {
    background: #5e7285; }
  .tabs .tab.activa {
    background: #fff;
    border-bottom: 2px solid #fff;
    font-weight: 600;
    color: #0a0c0d; }

.object-tools .addlink {
  background-color: #38a3a4; }
  .object-tools .addlink:visited {
    background-color: #38a3a4; }

/* Container layout */
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px; }

/* Put label first */
.checkbox-row label {
  order: 1;
  margin: 0;
  cursor: pointer; }

/* Switch (checkbox) */
.checkbox-row input[type="checkbox"] {
  order: 2;
  position: relative;
  width: 42px;
  height: 22px;
  appearance: none;
  background-color: #F7F7FF;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease; }

/* Knob */
.checkbox-row input[type="checkbox"]::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 2px;
  left: 2px;
  background-color: #BDD5EA;
  border-radius: 50%;
  transition: transform 0.3s ease; }

/* Checked state */
.checkbox-row input[type="checkbox"]:checked {
  background-color: #38a3a4;
  /* admin-friendly blue */ }

.checkbox-row input[type="checkbox"]:checked::before {
  transform: translateX(20px); }

/* Sí / No indicator */
.checkbox-row input[type="checkbox"]::after {
  content: "No";
  order: 3;
  margin-left: 10px;
  font-size: 0.9em;
  color: #495867;
  position: absolute;
  left: 55px;
  /* pushes text to the right of switch */
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap; }

/* When checked → Sí */
.checkbox-row input[type="checkbox"]:checked::after {
  content: "Sí";
  color: #38a3a4;
  font-weight: 500; }

/* Disabled state */
.checkbox-row input[type="checkbox"]:disabled {
  background-color: #F7F7FF;
  cursor: not-allowed; }

.checkbox-row input[type="checkbox"]:disabled::before {
  background-color: #F7F7FF; }

.checkbox-row input[type="checkbox"]:disabled {
  background-color: #F7F7FF;
  cursor: not-allowed; }

.checkbox-row input[type="checkbox"]:disabled::before {
  background-color: #F7F7FF; }

.checkbox-row input[type="checkbox"]:focus {
  box-shadow: 0 0 0 2px #38a3a4; }

.icon {
  width: 24px;
  height: 24px;
  display: block; }

#index-main {
  display: flex;
  flex-direction: row; }
  #index-main #tablero {
    flex: 0 0 70%; }
  #index-main aside {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    box-sizing: border-box; }
    #index-main aside #content-related {
      width: 100%; }
    #index-main aside .module {
      background-color: #14181c;
      border-radius: 4px; }
  #index-main .componente {
    border: 1px solid rgba(189, 213, 234, 0.25);
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #1f252b;
    box-sizing: border-box; }

.module-view {
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #F7F7FF;
  color: #343f49;
  padding-top: 2rem;
  padding-bottom: 4rem; }
  .module-view .tarjeta {
    border-radius: 4px;
    border: #577399 1px solid;
    padding: 2rem;
    margin: 1rem 4rem 0; }
    .module-view .tarjeta .contenido {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center; }
  .module-view .form-row {
    display: flex;
    flex-direction: row;
    padding: 0.5rem 4rem;
    font-size: 1rem;
    border: 0;
    font-weight: bold; }
    .module-view .form-row label {
      font-size: 1rem;
      width: 280px;
      min-width: 280px;
      color: #343f49;
      font-weight: normal; }
    .module-view .form-row.imagen {
      padding: 0; }
  .module-view h1 {
    font-weight: bold;
    background-color: #F7F7FF;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 2rem 4rem;
    font-size: 1.5rem;
    color: #343f49; }
  .module-view h2 {
    padding: 1rem 2rem; }
  .module-view .imagen {
    width: 220px; }
    .module-view .imagen img {
      max-width: 100%;
      display: block;
      margin: 12px auto 16px auto;
      border-radius: 16px;
      padding: 6px;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      object-fit: contain;
      background: linear-gradient(145deg, #ffffff, #f3f3f3); }
      .module-view .imagen img:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
  .module-view .entidades {
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column; }
    .module-view .entidades .entidad {
      margin-bottom: 2rem; }
      .module-view .entidades .entidad .miembros {
        border-radius: 4px;
        border: #577399 1px solid;
        padding: 2rem;
        font-size: 1rem; }
        .module-view .entidades .entidad .miembros .miembro-card {
          display: flex;
          flex-direction: row;
          gap: 2rem;
          margin-bottom: 1rem; }
          .module-view .entidades .entidad .miembros .miembro-card .miembro-img {
            width: 80px; }
            .module-view .entidades .entidad .miembros .miembro-card .miembro-img img {
              max-width: 100%; }
          .module-view .entidades .entidad .miembros .miembro-card .miembro-info {
            margin-bottom: 1rem; }
            .module-view .entidades .entidad .miembros .miembro-card .miembro-info .fila {
              display: flex;
              flex-direction: row; }
            .module-view .entidades .entidad .miembros .miembro-card .miembro-info .miembro-cargo {
              font-weight: bold;
              margin-right: 1rem; }
            .module-view .entidades .entidad .miembros .miembro-card .miembro-info a {
              color: #0a0c0d; }
    .module-view .entidades table {
      background-color: #F7F7FF;
      border-radius: 4px;
      border: #577399 1px solid;
      padding: 2rem;
      font-size: 1rem; }
      .module-view .entidades table tr th {
        background-color: #F7F7FF;
        color: #343f49;
        font-weight: bold;
        padding: 1rem;
        text-align: center;
        font-size: 1rem; }
        .module-view .entidades table tr th:first-child {
          width: 500px; }
      .module-view .entidades table tr td {
        background-color: #F7F7FF;
        color: black;
        color: #343f49;
        padding: 1rem;
        text-align: center;
        font-size: 1rem;
        border: #5e7285 1px solid;
        vertical-align: center; }

.pagina-reporte {
  /* Label del grupo */
  /* Ocultar opciones por defecto */
  /* Mostrar al hacer click
  #id_fields>div:has(> label:focus),
  #id_fields>div:has(> label:active),
  #id_fields>div:hover {
  }
  */
  /* Expandir cuando el grupo está "activo" */
  /* Estilo de cada checkbox */ }
  .pagina-reporte .info {
    margin-bottom: 1rem; }
  .pagina-reporte .componente-reporte {
    border: 1px solid rgba(189, 213, 234, 0.25);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    padding: 1rem;
    background-color: #14181c; }
    .pagina-reporte .componente-reporte.seleccion-modelo form {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center; }
      .pagina-reporte .componente-reporte.seleccion-modelo form #id_base_model {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 50%; }
    .pagina-reporte .componente-reporte.seleccion-campos label {
      display: block;
      margin-bottom: 1rem; }
    .pagina-reporte .componente-reporte.seleccion-campos #report-search {
      width: 512px;
      font-size: 1rem;
      padding: 0.5em;
      margin-bottom: 1rem; }
    .pagina-reporte .componente-reporte.seleccion-operaciones {
      margin-top: 1rem; }
    .pagina-reporte .componente-reporte.errores {
      background-color: #380003; }
    .pagina-reporte .componente-reporte.resultado-reporte tr {
      background-color: #F7F7FF;
      color: #0a0c0d; }
    .pagina-reporte .componente-reporte.guardar-reporte fieldset {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      padding-top: 0.5rem; }
      .pagina-reporte .componente-reporte.guardar-reporte fieldset h3 {
        margin: 0; }
      .pagina-reporte .componente-reporte.guardar-reporte fieldset .form-row {
        margin-left: 1rem; }
    .pagina-reporte .componente-reporte.graficos canvas {
      background-color: #eee;
      padding: 1rem;
      border-radius: 4px;
      margin-bottom: 1rem;
      min-height: 400px; }
    .pagina-reporte .componente-reporte .table-wrapper {
      width: 100%;
      max-width: 100%;
      max-height: 600px;
      overflow-x: auto;
      box-sizing: border-box;
      background-color: #F7F7FF; }
      .pagina-reporte .componente-reporte .table-wrapper table {
        width: max-content;
        min-width: 100%; }
        .pagina-reporte .componente-reporte .table-wrapper table td, .pagina-reporte .componente-reporte .table-wrapper table tr {
          width: auto;
          max-width: 400px;
          border: 1px solid #0a0c0d; }
    .pagina-reporte .componente-reporte p {
      margin: 0; }
    .pagina-reporte .componente-reporte .actions {
      display: flex;
      flex-direction: row;
      justify-content: right;
      align-items: center; }
      .pagina-reporte .componente-reporte .actions.agregar-filtro {
        justify-content: flex-start; }
  .pagina-reporte .autocomplete-list {
    position: absolute;
    background-color: #FFFFFF99;
    max-height: 512px;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0; }
  .pagina-reporte .autocomplete-item {
    padding: 6px 10px;
    cursor: pointer;
    color: black; }
  .pagina-reporte .autocomplete-item:hover {
    background: #eee; }
  .pagina-reporte #id_fields > div {
    border: 1px solid rgba(189, 213, 234, 0.25);
    border-radius: 4px;
    margin-bottom: 8px;
    background: #333; }
  .pagina-reporte #id_fields > div > label {
    display: block;
    padding: 10px 12px;
    font-weight: 600;
    cursor: pointer;
    background: #111;
    border-bottom: 1px solid rgba(189, 213, 234, 0.25); }
  .pagina-reporte #id_fields > div > div {
    display: none;
    padding: 8px 12px; }
  .pagina-reporte #id_fields > div:has(> label:focus) > div,
  .pagina-reporte #id_fields > div:has(> label:active) > div {
    display: block; }
  .pagina-reporte #id_fields input[type="checkbox"] {
    margin-right: 6px; }
  .pagina-reporte .report-group {
    border: 1px solid rgba(189, 213, 234, 0.25);
    border-radius: 4px;
    margin-bottom: 8px;
    padding: 4px 8px;
    background-color: #1f252b; }
  .pagina-reporte .report-group summary {
    font-weight: 600;
    cursor: pointer;
    padding: 6px; }
  .pagina-reporte .report-option {
    display: block;
    padding: 4px 6px; }
  .pagina-reporte #contenedor-graficos canvas {
    max-height: 400px;
    width: 100%; }

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