/* Experiment Styles */
.experiment {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.experiment:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experiment h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.experiment h4::before {
    content: '🔬';
    position: absolute;
    left: 0;
    top: 0;
}

.experiment p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.experiment-details {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    border-left: 3px solid #3498db;
}

.experiment-details strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.experiment-details ul {
    margin: 0;
    padding-left: 1.5rem;
}

.experiment-details li {
    margin-bottom: 0.3rem;
}

.experiment-details li:last-child {
    margin-bottom: 0;
}

/* Animation for experiment cards */
.experiment {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experiment:hover {
    transform: translateY(-3px);
}
