/* ==========================================
   TESTCONNECT - ESTILOS MODERNOS
   ========================================== */

/* Importar fuentes */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;900&family=Inter:wght@400;500;600;700;800&display=swap');

/* ==========================================
   RESET Y BASE
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg,
      #e91e63 0%,
      #9c27b0 25%,
      #673ab7 50%,
      #3f51b5 75%,
      #2196f3 100%);
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

/* ==========================================
   ORBS ANIMADOS DE FONDO
   ========================================== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #e91e63, transparent);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #2196f3, transparent);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #9c27b0, transparent);
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* ==========================================
   TOP NAVIGATION
   ========================================== */
.top-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: relative;

  padding: 10px 60px;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

.logo-icon-central {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}


.logo-icon {
  height: 40px;
  width: auto;
  object-fit: contain;
  max-height: 100%;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}


.logo-text h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #212529;
  margin: 0;
  line-height: 1.1;
}

.logo-text h1 .light-text {
  font-weight: 300;
  display: inline;
  margin-left: 2px;
}

.logo-text p {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
  margin: 0;
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.select-modern {
  padding: 8px 16px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  color: #495057;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select-modern:hover {
  border-color: #e91e63;
  background: white;
}

.btn-nav {
  padding: 6px 16px;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* ==========================================
   MAIN CONTENT LAYOUT
   ========================================== */
.main-wrapper {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.content-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 30px;
  align-items: start;
}

/* ==========================================
   SIDEBAR FORM
   ========================================== */
.sidebar-form {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 20px;
}

.form-title {
  font-size: 24px;
  font-weight: 800;
  color: #212529;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f8f9fa;
}

.form-group {
  margin-bottom: 25px;
}

.label-modern {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #6c757d;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================
   RADIO CARDS (Selector de opciones)
   ========================================== */
.radio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-card {
  position: relative;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card label {
  display: block;
  padding: 15px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  text-align: center;
  color: #495057;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-card input[type="radio"]:checked+label {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
  transform: scale(1.05);
}

.radio-card label:hover {
  border-color: #e91e63;
  transform: translateY(-2px);
}

.radio-label {
  display: block;
}

/* ==========================================
   INPUTS Y TEXTAREA
   ========================================== */
.textarea-modern,
.input-modern {
  width: 100%;
  padding: 15px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  color: #495057;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  resize: vertical;
}

.textarea-modern:focus,
.input-modern:focus {
  outline: none;
  border-color: #e91e63;
  background: white;
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.textarea-modern {
  min-height: 120px;
}

/* ==========================================
   FILE UPLOAD
   ========================================== */
.file-upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #f8f9fa;
  border: 2px dashed #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 120px;
}

.file-upload-box:hover {
  border-color: #e91e63;
  background: white;
  transform: translateY(-2px);
}

.file-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.file-text {
  font-size: 14px;
  color: #6c757d;
  font-weight: 600;
}

/* ==========================================
   INFO BADGE
   ========================================== */
.info-badge-modern {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 15px;
  background: #e3f2fd;
  border-radius: 10px;
  font-size: 12px;
  color: #1976d2;
  line-height: 1.5;
}

.info-badge-modern span:first-child {
  flex-shrink: 0;
  font-size: 16px;
}

/* ==========================================
   BOTONES DEL FORMULARIO
   ========================================== */
.btn-group-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.btn-modern {
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-modern {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: white;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-secondary-modern {
  background: white;
  color: #e91e63;
  border: 2px solid #e91e63;
}

.btn-secondary-modern:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
}

/* ==========================================
   RESULTS SECTION
   ========================================== */
.results-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

/* ==========================================
   ACTION BUTTONS BAR
   ========================================== */
.action-buttons {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.custom-buttons-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.action-btn {
  padding: 12px 22px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  color: #495057;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.action-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.action-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.action-btn i,
.action-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Estilos especÃ­ficos para botones de acciÃ³n por tipo */
.btn.jira:not(:disabled):hover {
  background: linear-gradient(135deg, #0052cc, #0747a6);
  border-color: transparent;
  color: white;
}

.btn.excel:not(:disabled):hover {
  background: linear-gradient(135deg, #217346, #185c37);
  border-color: transparent;
  color: white;
}

.btn.pdf:not(:disabled):hover {
  background: linear-gradient(135deg, #dc3545, #c82333);
  border-color: transparent;
  color: white;
}

/* ==========================================
   RESULT ITEMS (CARDS MODERNAS)
   ========================================== */
.list-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.list-group-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
}

/* Checkbox de selecciÃ³n */
.form-check-result {
  position: relative;
  top: 28px;
  min-width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 2;
  flex-shrink: 0;
}

/* Card moderna principal */

.result-item-modern,
#divs-content {
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeSlideIn 0.5s ease;
  flex: 1;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.result-item-modern:hover,
#divs-content:hover {
  box-shadow: 0 15px 60px rgba(233, 30, 99, 0.15);
  transform: translateY(-5px);
}




/* ==========================================
   MENSAJES DE ERROR VALIDACIÃ“N
   ========================================== */
.error-hint {
  display: none;
  color: #dc3545;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  padding: 6px 10px;
  background: #fff5f5;
  border-left: 3px solid #dc3545;
  border-radius: 4px;
  animation: fadeIn 0.3s ease;
}

.error-hint.show {
  display: block;
}

.field-error {
  border-color: #dc3545 !important;
  background: #fff5f5 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header con fondo gradiente */
.result-header-modern {
  background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.result-header-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0) 100%);
}

.result-title-modern {
  color: white;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.result-badge-modern {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Body con padding */
.result-body-modern {
  padding: 30px;
}

/* Cada secciÃ³n con lÃ­nea separadora */
.content-text {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.content-text:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ===== LABELS LIMPIOS SIN CONTORNO ===== */
.blue-bold-text {
  color: #e91e63;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
}

/* Campos limpios sin bordes */
.texto-span {
  color: #2c3e50;
  font-size: 15px;
  line-height: 1.8;
  display: block;
  padding: 0;
  min-height: 40px;
  transition: all 0.3s ease;
}

.texto-span:hover {
  color: #1a252f;
}

.blue-bold-text::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 14px;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 2px;
}

/* ==========================================
   BOTONES DE ACCIÃ“N EN CARDS
   ========================================== */
.button-container {
  display: flex;
  gap: 12px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.action-button {
  padding: 10px 18px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.action-button.select-all {
  background: linear-gradient(135deg, #10b981, #059669);
}

.action-button.copy-selected {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* BotÃ³n copiar individual */
.botonCopy {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.botonCopy:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* ==========================================
   BOTONES DE EDICIÃ“N (LÃPIZ)
   ========================================== */
.card {
  position: relative;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.criterio-linea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* .edit-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #6c757d;
  padding: 4px 8px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  transition: all 0.3s ease;
}

.edit-btn:hover {
  color: #e91e63;
  transform: scale(1.2);
} */

/* Panel de feedback */
.feedback {
  margin-top: 10px;
  padding: 15px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feedback textarea {
  width: 100%;
  min-height: 80px;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  resize: vertical;
  background-color: white;
  transition: border-color 0.3s ease;
}

.feedback textarea:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.enviar-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.enviar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

/* ==========================================
   SPINNER Y LOADING
   ========================================== */
#spinner-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #e91e63;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

.spinner.larger {
  width: 80px;
  height: 80px;
  border-width: 6px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

/* Image process animation */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
}

.hiddenImageProcess {
  display: none;
}

.circular-image1,
.circular-image2,
.circular-image3 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.circular-image2 {
  animation-delay: 0.3s;
}

.circular-image3 {
  animation-delay: 0.6s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* ==========================================
   ERROR CONTAINER
   ========================================== */
#errorContainer {
  display: none;
  padding: 20px;
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 12px;
  color: #856404;
  margin-top: 20px;
  align-items: center;
  gap: 10px;
}

#errorContainer i {
  font-size: 24px;
}

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */
#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 15px 25px;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  animation: slideIn 0.3s ease;
  font-weight: 600;
}

#toast.hidden {
  display: none;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================
   JIRA LIST CONTAINER
   ========================================== */
#containerJiraList {
  background-color: white;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

#containerJiraList.hidden {
  display: none;
}

#containerJiraList .jkey {
  font-weight: bold;
  color: #e91e63;
  margin: 8px 0;
  font-size: 14px;
}

#containerJiraList .jlink {
  color: #495057;
  margin: 8px 0;
  display: block;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 10px;
  transition: color 0.3s ease;
}

#containerJiraList .jlink:hover {
  color: #e91e63;
}

/* ==========================================
   TOGGLE R&C
   ========================================== */
.top-left {
  position: fixed;
  top: 90px;
  left: 15px;
  z-index: 1000;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s ease;
}

.top-left:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.top-left input {
  margin-right: 5px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-form {
    position: relative;
    top: 0;
  }

  .main-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .radio-cards {
    grid-template-columns: 1fr;
  }

  .btn-group-modern {
    grid-template-columns: 1fr;
  }

  .top-nav {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .logo-icon-central {
    height: 60px;
    max-width: 150px;
  }

  .logo-icon {
    height: 35px;
  }

  .select-modern {
    padding: 10px 15px;
    font-size: 13px;
  }

  .btn-nav {
    padding: 10px 20px;
    font-size: 14px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .logo-text h1 {
    font-size: 22px;
  }

  .form-title {
    font-size: 20px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .logo-text h1 {
    font-size: 22px;
  }

  .form-title {
    font-size: 20px;
  }
}

/* ==========================================
   COMPATIBILIDAD CON CLASES ANTIGUAS
   ========================================== */
.container-form {
  /* Mantener compatibilidad */
}

.background-img {
  /* Mantener compatibilidad */
}

.div-resultContainer {
  /* Compatibilidad con cÃ³digo existente */
}

.back-document,
.back-document-content {
  /* Mantener para compatibilidad */
}

/* Asegurar que los archivos adjuntos funcionen */
.input-archivos {
  margin-bottom: 25px;
}

.archivo-input {
  display: none;
}

/* Info text hover (mantener funcionalidad original) */
.info-text {
  display: none;
  position: absolute;
  background-color: #f8f9fa;
  color: #495057;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-size: 12px;
  max-width: 300px;
  line-height: 1.5;
}

.cantidad:hover+.info-text {
  display: block;
}

/* Ocultar elementos por defecto */
.hidden {
  display: none !important;
}

/* ==========================================
   UTILIDADES
   ========================================== */
.center-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Asegurar que Bootstrap no rompa nuestros estilos */
.form-control {
  font-family: 'Inter', sans-serif !important;
}

/* Evitar problemas con overflow */
body {
  overflow-x: hidden;
}

.main-wrapper {
  overflow-x: hidden;
}

/* BotÃ³n Informe de CertificaciÃ³n - Verde */
.action-button.informe-certificacion {
  background: linear-gradient(135deg, #10b981, #059669);
}

.action-button.informe-certificacion:hover {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* BotÃ³n Generar Informe - Naranja */
.action-button.generar-informe {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.action-button.generar-informe:hover {
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}