/* Add this to your main CSS file (e.g., public/css/styles.css) */

.quote-verification-section {
  margin-top: 20px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.verification-header {
  padding: 15px;
  border-bottom: 1px solid #dee2e6;
  background-color: #e9ecef;
  border-radius: 8px 8px 0 0;
}

.verification-header h4 {
  margin: 0 0 10px 0;
  color: #495057;
  font-size: 1.1rem;
}

.verification-summary {
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.95rem;
}

.all-verified { 
  background-color: #d4edda; 
  color: #155724; 
}

.none-verified { 
  background-color: #f8d7da; 
  color: #721c24; 
}

.partial-verified { 
  background-color: #fff3cd; 
  color: #856404; 
}

.unverified-count {
  font-weight: normal;
  opacity: 0.8;
}

.verification-details {
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
}

.quote-item {
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 6px;
  border-left: 4px solid;
  font-size: 0.9rem;
}

.quote-item.verified {
  background-color: #d4edda;
  border-left-color: #28a745;
}

.quote-item.unverified {
  background-color: #f8d7da;
  border-left-color: #dc3545;
}

.quote-status {
  font-weight: bold;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-text {
  font-size: 0.85rem;
}

.quote-text {
  font-style: italic;
  color: #495057;
  margin-bottom: 5px;
  line-height: 1.4;
  max-width: 100%;
  word-wrap: break-word;
}

.source-info {
  font-size: 0.8rem;
  color: #6c757d;
}

/* Highlighting quotes in the main response */
.quote-verified {
  background-color: rgba(40, 167, 69, 0.1);
  border-bottom: 2px solid #28a745;
  cursor: pointer;
  padding: 1px 2px;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.quote-unverified {
  background-color: rgba(220, 53, 69, 0.1);
  border-bottom: 2px solid #dc3545;
  cursor: pointer;
  padding: 1px 2px;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.quote-verified:hover,
.quote-unverified:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .verification-details {
    max-height: 200px;
  }
  
  .quote-text {
    font-size: 0.85rem;
  }
  
  .verification-header {
    padding: 12px;
  }
  
  .verification-details {
    padding: 12px;
  }
}