/* Test Detail Specific Styles */

.test-illustration {
  margin-bottom: 2rem;
}

.test-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.info-item i {
  font-size: 1.2rem;
}

.test-parts {
  margin-bottom: 2rem;
}

.test-parts h5 {
  margin-bottom: 1rem;
  color: #495057;
}

.part-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

@media (max-width: 768px) {
  .test-info-grid {
    grid-template-columns: 1fr;
  }
  
  .part-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}