/* Research Extension - Public Styles */

.re-progress-timeline {
    margin: 30px 0;
}

.re-progress-stage {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #ddd;
}

.re-progress-stage.re-completed {
    border-left-color: #4caf50;
    background: #e8f5e9;
}

.re-stage-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.re-completed .re-stage-icon {
    background: #4caf50;
    color: #fff;
}

.re-stage-content {
    flex: 1;
}

.re-stage-content h4 {
    margin: 0 0 10px 0;
}

.re-stage-meta {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.re-xp {
    color: #ffa726;
    font-weight: 600;
}

.re-team-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.re-team-members {
    list-style: none;
    padding: 0;
}

.re-team-members li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.re-role {
    color: #666;
    font-size: 14px;
}
