body {
  min-height: 100vh;
  background: #f0f2f5;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 45% at 15% 15%,
      rgba(1, 148, 202, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 40% at 85% 85%,
      rgba(1, 100, 160, 0.05) 0%,
      transparent 65%
    );
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 10s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  from {
    opacity: 0.7;
  }

  to {
    opacity: 1;
  }
}

.contenedor_principal_basc {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 10px 40px 10px;
  box-sizing: border-box;
  margin-top: 100px;
}

.estructura {
  position: relative;
  z-index: 1;
  width: calc(100% - 20px);
  max-width: 1700px;
  min-width: 300px;
  background: #fff;
  border: 1px solid #d8dee9;
  border-radius: 14px;
  box-shadow:
    0 18px 45px rgba(11, 30, 61, 0.14),
    0 6px 18px rgba(11, 30, 61, 0.08),
    0 2px 6px rgba(11, 30, 61, 0.05);
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  animation: cardIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}
.footer_derecha {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  margin-bottom: -40px;
}
.panel_izquierda {
  background: linear-gradient(160deg, #0194ca 0%, #34b8e8 55%, #c8eaf6 100%);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 56px 40px;
}

.panel_izquierda::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.panel_izquierda::after {
  content: "";
  position: absolute;
  bottom: 28%;
  left: 44px;
  right: 44px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
}

.panel_azul {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.texto_bienvenida {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.texto_bienvenida_descripcion {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.panel_curso {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 16px 18px;
}

.panel-curso-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  line-height: 1.7;
  word-break: break-word;
}

.panel-curso-nombre {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

.panel_derecho {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.panel_derecho_contenido {
  display: flex;
  flex-direction: column;
}

.panel_derecho_titulo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #0b1e3d;
  margin-bottom: 6px;
  animation: fadeUp 0.7s 0.3s both;
}

.panel_derecho_titulo_descripcion {
  font-size: 14px;
  color: #5f6c7b;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.37s both;
}

.curso_nombre_cuadro {
  background: #e6f6fd;
  border: 1.5px solid #0194ca;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 15px;
  animation: fadeUp 0.7s 0.4s both;
}

.curso_nombre_descripcion {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #0194ca;
  margin-bottom: 7px;
}

.nombre_curso_panel {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #0b1e3d;
  cursor: pointer;
  background-position: right 4px center;
  padding-right: 24px;
}

/* campos */
.contenedor_empresanit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}

.form_campo_3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.form_campo {
  padding-right: 40px;
  margin-bottom: 12px;
  animation: fadeUp 0.7s both;
  box-sizing: border-box;
}

label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0194ca;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="hidden"],
select.field-select {
  width: 100%;
  box-sizing: border-box;
  background: #fafbfd;
  border: 1.5px solid #d8dee9;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #0b1e3d;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}

input::placeholder {
  color: rgba(11, 30, 61, 0.25);
}

input:focus,
select.field-select:focus {
  border-color: #17aade;
  background: #e6f6fd;
  box-shadow: 0 0 0 4px var rgba(1, 148, 202, 0.15);
}

select.field-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230194ca' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  background-color: #fafbfd;
}

/* Separador */
.sep {
  height: 1px;
  background: linear-gradient(90deg, #d8dee9, transparent);
  margin: 6px 0 20px;
}

.apartado_entre_filas {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #0b1e3d;
  line-height: 1.25;
  margin-bottom: 8px;
  margin-top: -8px;
  animation: fadeUp 0.7s 0.4s both;
}

/* Tipo valor asociado o No asociado */
.contenedor_checkbock_iva {
  background: #d5ecff;
  border: 1.5px solid #0041b9;
  border-radius: 10px;
  padding: 16px 16px;
}

.eleccion_iva {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* Tipo orden compra */
.contenedor_checkbock_orden_compra {
  background: #fffbe6;
  border: 1.5px solid #f0c040;
  border-radius: 10px;
  padding: 13px 16px;
}

.eleccion_orden_compra {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 8px;
}

/* Tipo participante */
.contenedor_checkbock_participante {
  background: #e8f7fd;
  border: 1px solid #17aade;
  border-radius: 10px;
  padding: 13px 16px;
}

.eleccion {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #0b1e3d;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: #0194ca;
  cursor: pointer;
}

.nota {
  font-size: 11px;
  color: #0194ca;
  font-style: italic;
}

.tipo_nota {
  font-size: 11px;
  color: #0194ca;
  font-weight: bold;
  font-style: italic;
}

.tipo_nota2 {
  font-size: 11px;
  color: #b45309;
  font-style: italic;
}
.caja_heabeas_data {
  margin-left: 90px;
}
.div_habeas_data {
  background: #f8fafd;
  border: 1px solid #d8dee9;
  border-left: 3px solid #0194ca;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 16px;
  animation: fadeUp 0.7s both;
	width: 90%;
	text-align: justify;
}

.div_habeas_data_titulo {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0194ca;
  margin-bottom: 10px;
}

.div_habeas_data_texto {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 14px;
}

.div_habeas_data_texto strong {
  color: var(--navy);
}

.div_habeas_data_texto a {
  color: var(--blue);
  text-decoration: underline;
}

.input_empresa_habeas {
  width: 100%;
  max-width: 320px;
  display: inline-block;
  box-sizing: border-box;
  margin: 6px 0;
  padding: 8px 10px;
  border: 1px solid #d8dee9;
  border-radius: 6px;
  background: #fff;
  font-size: 15px;
  vertical-align: middle;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.check-row label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

/* Botón */
.btn-wrap {
  margin-top: 8px;
  animation: fadeUp 0.7s 0.7s both;

  display: flex;
  gap: 18px;
}

.btn {
  flex: 1;
  padding: 16px;
  background: linear-gradient(135deg, #0194ca, #5dd0f5);
  border: none;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.3s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #017dac, #0194ca);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(1, 148, 202, 0.35);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.55s ease;
}

.btn:hover::after {
  left: 160%;
}

.footer-note {
  margin-top: 22px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-align: center;
  color: rgba(1, 148, 202, 0.45);
  animation: fadeUp 0.7s 0.8s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}
#welcome-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 1s ease forwards;
  animation-delay: 2s;
}

.welcome-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  gap: 40px;
}

.welcome-left {
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 700;
  color: #1c1c1e;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s ease forwards;
}

.welcome-right img {
  width: clamp(140px, 12vw, 220px);
  height: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes slideUp {
  to {
    opacity: 2;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (min-width: 1800px) {
  .estructura {
    grid-template-columns: 1fr 2fr;
  }
  .contenedor_principal_basc {
    margin-top: -70px;
  }
  .panel_izquierda {
    padding: 72px 60px;
  }

  .panel_derecha {
    padding: 72px 72px;
  }

  .texto_bienvenida {
    font-size: 35px;
  }

  label {
    font-size: 12px;
  }

  input {
    font-size: 15px;
    padding: 15px 20px;
  }

  .btn {
    padding: 18px;
    font-size: 12px;
  }

  .texto_bienvenida_descripcion {
    font-size: 15px;
  }

  .pill {
    font-size: 14px;
  }
}

@media (max-width: 1440px) and (min-width: 821px) {
  .panel_izquierda {
    padding: 48px 36px;
  }

  .panel_derecho {
    padding: 48px 44px;
  }

  .texto_bienvenida {
    font-size: 20px;
  }

  input {
    padding: 12px 14px;
    font-size: 13px;
  }

  .btn {
    padding: 14px;
  }
}

@media (max-width: 1024px) {
  .contenedor_principal_basc {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 10px 40px 10px;
    margin-top: -70px;
    box-sizing: border-box;
  }

  .estructura {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .panel_izquierda {
    order: 1;
    padding: 40px 28px;
    width: 100%;
    box-sizing: border-box;
  }

  .panel_derecho {
    order: 2;
    padding: 36px 28px;
    width: 100%;
    box-sizing: border-box;
  }

  .contenedor_empresanit,
  .form_campo_3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form_campo {
    padding-right: 0;
  }
}
/* ── Nota Busquedad Aviso ── */
.nota_busquedad {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 16px;
  border-radius: 14px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.nota_busquedad_icon {
  flex-shrink: 0;
  color: #0194ca;
  margin-top: 1px;
  line-height: 1;
}

.nota_busquedad_texto {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #4a5568;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.nota_busquedad_titulo {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0194ca;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.nota-falta {
  display: inline-block;
  background: rgba(229, 62, 62, 0.1);
  color: #c53030;
  font-weight: 700;
  font-size: 12px;
  padding: 1px 8px;
  border-radius: 6px;
  border: 1px solid rgba(229, 62, 62, 0.22);
}

.nota_numero_de_identificacion {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #4a5568;
  word-break: break-word;
  overflow-wrap: break-word;
}

.nota-fecha {
  display: inline-block;
  font-weight: 600;
  color: #2d3748;
}

/* Fix overflow en móvil */
@media (max-width: 767px) {
  .nota_busquedad {
    flex-direction: column;
    gap: 7px;
    padding: 11px 13px;
    border-radius: 11px;
    margin: 14px 0 6px;
  }

  table.listado1 {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
}
.fecha_calendario {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 500;
  font-family: "SF Pro Display", "Segoe UI", sans-serif;
  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.fecha_calendario:hover {
  border-color: #0194ca;
}

.fecha_calendario:focus {
  border-color: #0194ca;
  box-shadow:
    0 0 0 4px rgba(1, 148, 202, 0.12),
    0 8px 20px rgba(1, 148, 202, 0.1);
}

.fecha_calendario::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.25s;
}

.fecha_calendario::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}
.panel-desc {
			font-size: 13px;
			font-weight: 300;
			color: rgba(255, 255, 255, 0.85);
			line-height: 1.2;
			animation: fadeUp 0.7s 0.47s both;
		}

		.panel-pills {
			display: flex;
			flex-direction: column;
			gap: 11px;
			margin-top: 48px;
			animation: fadeUp 0.7s 0.54s both;
		}

		.pill {
			display: flex;
			align-items: center;
			gap: 10px;
			font-size: 11px;
			color: rgba(255, 255, 255, 1);
			font-weight: bold;
		}

		.pill-dot {
			width: 6px;
			height: 6px;
			border-radius: 50%;
			background: rgba(255, 255, 255, 1);
			flex-shrink: 0;
		}
		.footer_contenido_caja {
			width: 100%;
			background: linear-gradient(to right, #e8f6fd, #f7fcff, #dff2fb);
			box-shadow: inset 0 8px 24px rgba(1, 148, 202, 0.1), inset 0 2px 0 rgba(1, 148, 202, 0.3);
			padding: 16px 18px;
			/*margin-bottom: -20px;*/
			text-align: center;
			
			font-family:'Roboto', sans-serif; 
			color:#0186b6; 
			letter-spacing:1px;
		}

		.footer_contenido {
			color: #0186b6;
			font-size: 12px;
			/*font-weight: bold;*/
		}

	 /* 1. CONTENEDOR DE LA TABLA (opcional, para scroll y sombra) */
			.table-wrapper {
				overflow-x: auto;
				border-radius: 10px;
				box-shadow: 0 8px 20px rgba(38, 169, 216, 0.12);
				background: #ffffff;
				padding: 4px;
				transition: box-shadow 0.25s ease;
			}

			.table-wrapper:hover {
				box-shadow: 0 12px 28px rgba(38, 169, 216, 0.20);
			}
/* 2. TABLA PRINCIPAL */
			.table-corporate {
				width: 100%;
				border-collapse: collapse;
				font-family: Arial, Helvetica, sans-serif;
				font-size: 13px;
				background-color: #ffffff;
				border-radius: 10px;
				overflow: hidden;
				/* borde sutil con el color corporativo */
				border: 1px solid #e1f0f8;
			}
	/* 3. ENCABEZADO (THEAD) – fondo #26A9D8, texto blanco */
			.table-corporate thead tr {
				background-color: #26A9D8;
				color: #ffffff;
				text-transform: uppercase;
				letter-spacing: 0.03em;
				font-weight: 600;
			}

			.table-corporate thead th {
				padding: 16px 18px;
				text-align: left;
				border-bottom: 1px solid #1a8bb5; /* tono más oscuro para contraste */
				font-size: 14px;
				white-space: nowrap;
				background-color: #26A9D8; /* refuerzo */
				color: #ffffff;
			}

			/* 4. CUERPO (TBODY) */
			.table-corporate tbody tr {
				border-bottom: 1px solid #e6f0f7;
				transition: background-color 0.2s ease, box-shadow 0.2s ease;
			}

			/* Efecto hover sobre filas (sutil, con toque corporativo) */
			.table-corporate tbody tr:hover {
				background-color: #f0f9fe;
				/*box-shadow: inset 0 0 0 1px #26A9D8;*/
			}

			/* Celdas del cuerpo */
			.table-corporate tbody td {
				padding: 14px 18px;
				vertical-align: middle;
				color: #1f2a3a;
				border-right: 1px solid #edf5fa;
			}

			/* Eliminamos borde derecho en la última celda */
			.table-corporate tbody td:last-child {
				border-right: none;
			}
			.table-corporate-marcolinea{
				color: #003F8E;
				border:1px solid #D8DEE9;
				border-radius: 12px;
				width: 12%;
				padding: 10px;
				box-shadow:
					0 4px 12px rgba(0, 0, 0, 0.15),
					inset 0 0 0 1px rgba(255, 255, 255, 0.2);
				
			}
		
			/* 5. CELDAS ESPECIALES (acciones, badges, etc) */
			.table-corporate .badge-estado {
				display: inline-block;
				background-color: #e1f3fb;
				color: #1a7b9e;
				padding: 4px 12px;
				border-radius: 30px;
				font-size: 0.75rem;
				font-weight: 600;
				letter-spacing: 0.02em;
				border: 1px solid #b3dff0;
			}

			.table-corporate .badge-estado.activo {
				background-color: #dff6e9;
				color: #0f6e4a;
				border-color: #9edfc4;
			}

			.table-corporate .badge-estado.inactivo {
				background-color: #fde8e8;
				color: #a13d3d;
				border-color: #f5c2c2;
			}

        /* 6. ENLACES O BOTONES DENTRO DE LA TABLA (estilo corporativo) */
        .table-corporate .btn-accion {
            display: inline-block;
            background-color: transparent;
            color: #26A9D8;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 30px;
            border: 1px solid #26A9D8;
            font-size: 0.75rem;
            text-decoration: none;
            transition: 0.2s ease;
            cursor: default;
            letter-spacing: 0.02em;
        }

        .table-corporate .btn-accion:hover {
            background-color: #26A9D8;
            color: #ffffff;
            box-shadow: 0 2px 8px rgba(38, 169, 216, 0.3);
        }

        .table-corporate .btn-accion.secundario {
            border-color: #b0c8d6;
            color: #3a4f5e;
        }

        .table-corporate .btn-accion.secundario:hover {
            background-color: #d6e6f0;
            border-color: #7898aa;
            color: #1a2e3b;
            box-shadow: none;
        }

        /* 7. PIE DE TABLA (opcional, para totales o resumen) */
        .table-corporate tfoot {
            background-color: #f8fcff;
            border-top: 2px solid #26A9D8;
        }

        .table-corporate tfoot td {
            padding: 12px 18px;
            font-weight: 500;
            color: #1f3a4b;
            font-size: 0.9rem;
        }

        /* 8. RESPONSIVE Y AJUSTES */
        @media (max-width: 640px) {
            .table-corporate thead th,
            .table-corporate tbody td {
                padding: 10px 12px;
                font-size: 0.8rem;
            }
            .table-corporate .badge-estado {
                font-size: 0.65rem;
                padding: 2px 8px;
            }
            .table-corporate .btn-accion {
                font-size: 0.65rem;
                padding: 2px 8px;
            }
        }

        /* 9. BORDE Y REDONDEO GLOBAL (para armonizar) */
        .table-corporate {
            border-radius: 10px;
        }

        .table-corporate thead th:first-child {
            border-top-left-radius: 12px;
        }
        .table-corporate thead th:last-child {
            border-top-right-radius: 12px;
        }

        /* 10. ESTILOS ADICIONALES PARA FORMULARIO DE CONSULTA (contexto) */
        .consulta-filtros {
            background: #ffffff;
            padding: 20px 24px;
            border-radius: 16px;
            margin-bottom: 28px;
            box-shadow: 0 4px 12px rgba(38, 169, 216, 0.06);
            border: 1px solid #e6f2fa;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            gap: 16px 24px;
        }

        .consulta-filtros label {
            font-weight: 500;
            color: #1f3a4b;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .consulta-filtros input,
        .consulta-filtros select {
            padding: 8px 14px;
            border: 1px solid #d5e5ef;
            border-radius: 40px;
            font-size: 0.9rem;
            background: #fafdff;
            transition: 0.2s;
            min-width: 180px;
        }

        .consulta-filtros input:focus,
        .consulta-filtros select:focus {
            outline: 2px solid #26A9D8;
            outline-offset: 2px;
            border-color: #26A9D8;
            background: #ffffff;
        }

        .consulta-filtros .btn-buscar {
            background: #26A9D8;
            border: none;
            color: white;
            font-weight: 600;
            padding: 10px 30px;
            border-radius: 40px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.2s;
            box-shadow: 0 4px 8px rgba(38, 169, 216, 0.2);
            letter-spacing: 0.04em;
            border: 1px solid #1f9ac4;
        }

        .consulta-filtros .btn-buscar:hover {
            background: #1f8fb5;
            box-shadow: 0 6px 14px rgba(38, 169, 216, 0.3);
            transform: scale(1.01);
        }

        /* Etiqueta decorativa "CONSULTA" */
        .titulo-consulta {
            font-size: 1.8rem;
            font-weight: 600;
            color: #1e2f3e;
            letter-spacing: -0.02em;
            margin: 0 0 8px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .titulo-consulta small {
            font-size: 1rem;
            font-weight: 400;
            color: #26A9D8;
            background: #e1f2fa;
            padding: 0 16px;
            border-radius: 40px;
            line-height: 2;
        }

        /* Separador sutil */
        .separador {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #26A9D8 0%, #b3dff0 80%, transparent 100%);
            margin: 20px 0 24px 0;
            opacity: 0.5;
        }
