/* 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;
}


/* 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;
}


/* 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 */
}