/* pipeline.css - Styles du projet PIPELINE */

.pipeline-container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.pipeline-header {
  border-bottom: 3px solid #0056b3;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.pipeline-container .project-title-with-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.pipeline-container .project-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.pipeline-header h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 0;
}

.pipeline-header h2 {
  color: #7f8c8d;
  font-size: 1.5rem;
}

/* Sections spécifiques PIPELINE */
.partners-section {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  border-left: 4px solid #0056b3;
}

.partners-section h3 {
  color: #0056b3;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.partner-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid #0056b3;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 86, 179, 0.2);
  border-color: #003d82;
}

.partner-logo {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.partner-card h4 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.4;
}

/* Section essai clinique */
.clinical-trial-section {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 8px;
  border-left: 4px solid #0056b3;
}

.clinical-trial-section h2 {
  color: #0056b3;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.trial-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.trial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid #0056b3;
  box-shadow: 0 2px 4px rgba(0, 86, 179, 0.1);
}

.trial-card h3 {
  color: #0056b3;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}

.trial-card p {
  color: #555;
  line-height: 1.6;
}

/* Section données */
.data-section {
  margin-top: 2rem;
}

.data-section h2 {
  color: #0056b3;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.status-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
  border-radius: 8px;
  border: 2px solid #ffc107;
  margin-top: 1rem;
}

.status-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.status-content {
  flex: 1;
}

.status-content h3 {
  color: #856404;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.status-content p {
  color: #856404;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.status-badge {
  margin-top: 1rem;
}

.badge-pending {
  background: #ffc107;
  color: #856404;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
}

/* Section contact */
.contact-section {
  margin-top: 2rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #0056b3;
}

.contact-section h2 {
  color: #0056b3;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-section p {
  color: #555;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Dashboard cards spécifiques PIPELINE */
.pipeline-container .dashboard-card {
  border-color: #0056b3;
}

.pipeline-container .dashboard-card:not(.disabled):hover {
  background: #0056b3;
  border-color: #003d82;
}

/* Stats cards PIPELINE */
.pipeline-container .stat-card {
  background: linear-gradient(135deg, #0056b3, #003d82);
}

/* Info cards dans PIPELINE */
.pipeline-container .info-card {
  border-color: #0056b3;
}

.pipeline-container .info-card h3 {
  color: #0056b3;
}

/* Responsive design */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .trial-info {
    grid-template-columns: 1fr;
  }

  .status-card {
    flex-direction: column;
    text-align: center;
  }

  .partner-logo,
  .status-icon {
    font-size: 2.5rem;
  }
}
