/* IntelligentEngine - Main Application Styles */

/* Global Inter Font Family */
body, html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

p, span, div, a, button, input, textarea, select, label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
  text-decoration: none !important;
}










/* estilos de footer */ 

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
	color: #333333 !important;
}


.container .footer-top-bar-content .footer-status a {
    color: white !important;
    font-size: 0.875rem;

}

.container .footer-top-bar-content .footer-status a:hover {
    color: rgb(170, 45, 45) !important;
    font-size: 0.875rem;

}

.footer-status .footer-status-link {
	text-decoration: none !important;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
	border: none !important;
	outline: none !important;
}

.footer-status-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	/*background: #eb461d !important;*/
	display: inline-block;
}
















/* Importa la tipografía Inter desde Google Fonts */


.pagination {
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 2rem 0;
}

.pagination span {
  display: inline-block;
}

.pagination a {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pagination a:hover {
  background-color: white;
  color: #1e4a54 !important;
  border-color: #1e4a54;
}

.pagination .current {
  padding: 6px 12px;
  border-radius: 4px;
  background-color: #a7e0ec;
  color: rgb(7, 7, 7);
  font-weight: 600;
  border: 1px solid #a7e0ec;
}

.pagination .first a,
.pagination .prev a {
  font-size: 0.9rem;
}

.pagination .page a {
  font-size: 0.9rem;
}

.pagination .page.current {
  font-size: 0.9rem;
}


/* Card body top spacing */
.card-body {
  margin-top: 1rem;
}

/* Dropdown fixes over responsive tables */
.table-responsive.position-static { position: static !important; }
.dropdown.position-static .dropdown-menu {
  position: absolute;
  z-index: 1055; /* above modals/backdrops */
  inset: auto auto auto 0; /* ensure proper placement */
  display: block; /* let Bootstrap toggle .show handle visibility */
  visibility: hidden;
  opacity: 0;
  transition: opacity .12s ease-in-out, visibility .12s ease-in-out;
}
.dropdown.position-static .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
}

/* Avatar size 38x38 */
.avatar,
.avatar .avatar-initial,
.avatar-initial.rounded,
.avatar-initial.rounded-circle {
  width: 38px !important;
  height: 38px !important;
  line-height: 38px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Image avatar helper */
.avatar-38,
.avatar img,
img.avatar-38 {
  width: 38px !important;
  height: 38px !important;
  object-fit: cover;
}

/* Estado de campo email bloqueado tras confirmación (color del adjunto) */
.form-control.locked-confirm {
  background-color: #eef1f4 !important; /* gris claro del adjunto */
  border-color: #dde2e6 !important;
  color: #6c757d !important;
  opacity: 1 !important; /* no bajar opacidad, solo color */
}

/* Stacked Cards Scroll Effect */
.scroll-section {
  min-height: 200vh; /* Altura suficiente para permitir el scroll */
  position: relative;
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Espacio entre tarjetas cuando no están pegadas */
}

.card {
  position: sticky;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 40px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/*
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
*/
.card-1 {
  position: sticky;
  top: 0;
  z-index: 3;
}

.card-2 {
  position: sticky;
  top: 25vh;
  z-index: 2;
}

.card-3 {
  position: sticky;
  top: 50vh;
  z-index: 1;
}


