/* =====================================================
   CSS EXTENSION: RESULTADOS Y MULTI-SELECCIÓN PANEL 2
   ===================================================== */

.ai-progress-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00b4d8;
    margin-bottom: 8px;
    opacity: 0.8;
  }
  
  .glass-btn.selected {
    border-color: #00b4d8 !important;
    background: rgba(0, 180, 216, 0.1) !important;
  }
  
  /* Resultado Panel */
  .result-panel {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    margin-top: 10px;
  }
  
  .result-header-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4ade80; /* Success green */
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .result-bars-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .result-bar-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .bar-legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
  }
  
  .bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .bg-super-success {
    background: linear-gradient(90deg, #16a34a, #4ade80);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
  }
  
  .bg-primary-yunis {
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
  }
  
  .result-actions-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .result-btn {
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
  }
  
  .result-btn.primary {
    background: #00b4d8;
    color: #fff;
  }
  
  .result-btn.primary:hover {
    background: #0096b4;
    transform: translateY(-2px);
  }
  
  .result-btn.text-muted {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
  }
  
  .result-btn.text-muted:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,0.05);
  }
  
  /* Catálogo Inyectado Destacado */
  .recommended-area {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(21, 128, 61, 0.01) 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 40px;
  }
  
  .affinity-badge {
    background: rgba(11, 17, 32, 0.9) !important;
    color: #4ade80 !important;
    border: 1px solid #22c55e !important;
    font-weight: 800 !important;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3) !important;
  }
